gofurther.utsi.edu
Going Further
http://gofurther.utsi.edu/Home.htm
Looking at the stars always makes me dream, as simply as I dream over the black dots representing towns and villages on a map. Why, I ask myself, shouldn't the shining dots of the sky be as accessible as the black dots on a map of France. This is the website of Dr. Eric Jacob. I have a bunch of projects here and I am working on adding more. I am currently employed at Gloyer Taylor Laboratories. As a bonafide rocket scientist. How to Make Solid Propellant Rocket Candy. MSOE Senior Design Rocket.
fundamentalthinking.blogspot.com
Fundamental Thinking: Installing Fortran on Windows with MinGW
http://fundamentalthinking.blogspot.com/2015/02/installing-fortran-on-windows-with-mingw.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Monday, February 16, 2015. Installing Fortran on Windows with MinGW. This post is more for me to aggregate the hard work of others so I have a single place to look when installing Fortran on Windows. 3) install minwg as administrator to the c: drive. 5) Add path variables:.
fundamentalthinking.blogspot.com
Fundamental Thinking: Installing Fortran on Windows with Cygwin
http://fundamentalthinking.blogspot.com/2015/02/installing-fortran-on-windows-with.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Sunday, February 15, 2015. Installing Fortran on Windows with Cygwin. This post is more for me to aggregate the hard work of others so I have a single place to look when installing Fortran on Windows. Https:/ www.youtube.com/watch? 4) Install these packages in cygwin:.
fundamentalthinking.blogspot.com
Fundamental Thinking: Second order Finite Difference Schemes for Non-Uniform Grid Spacing
http://fundamentalthinking.blogspot.com/2014/08/second-order-finite-difference-schemes.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Saturday, August 16, 2014. Second order Finite Difference Schemes for Non-Uniform Grid Spacing. A lot of credit goes to. Http:/ www.scientificpython.net/. I use Lagrange interpolating polynomials as the base functions and it results in the same derivatives that they provi...
fundamentalthinking.blogspot.com
Fundamental Thinking: Alternative Approach for Using Gnuplot with Python in Windows
http://fundamentalthinking.blogspot.com/2015/08/alternative-approach-for-using-gnuplot.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Thursday, August 6, 2015. Alternative Approach for Using Gnuplot with Python in Windows. I ran into a problem plotting with python in windows. I don't know how common this problem is, but here were a few articles about it. 2 problems. This gave me an idea - but not for py...
fundamentalthinking.blogspot.com
Fundamental Thinking: Brief Intro to Structures in Fortran
http://fundamentalthinking.blogspot.com/2015/03/brief-intro-to-structures-in-fortran.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Tuesday, March 3, 2015. Brief Intro to Structures in Fortran. For this example, I need a variable named PointsInCell. Inside PointsInCell, I want to store variables associated with x and y gridpoints. So, at every gridpoint I want to store:. 1) an integer counter NumInCell.
fundamentalthinking.blogspot.com
Fundamental Thinking: Excel Figures with Directional Arrows
http://fundamentalthinking.blogspot.com/2014/08/excel-figures-with-directional-arrows.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Tuesday, August 12, 2014. Excel Figures with Directional Arrows. I needed streamlines and a I wanted arrows to show the flow direction of the flow. Pull in your Original XY Data in the Original Sheet - I use the Matlab code below to generate constant streamlines. This aut...
fundamentalthinking.blogspot.com
Fundamental Thinking: Fortran Dynamic Allocation on the Fly
http://fundamentalthinking.blogspot.com/2015/03/fortran-dynamic-allocation-on-fly.html
Fundamental Thinking' is intended as a central reference point for technical and nontechnical information relevant for myself and other aspiring or established scientists. From time to time I will also post product reviews and the like. Tuesday, March 3, 2015. Fortran Dynamic Allocation on the Fly. This article from stackoverflow suggests linked lists (which I think are intended to be used with pointers) to append allocatable arrays on the fly with more or less elements. One option is (written in Fortran).