=========================================================================
  ThermoFluidCalc — Standalone Fortran Execution Guide
=========================================================================

Calculator : Von Neumann Stability Analysis
Category   : Cfd

Files Included:
  - von_neumann.f90 (Fortran 90/2008 Source Code)
  - input.txt (Pre-configured Sample Input)

-------------------------------------------------------------------------
1. How to Compile
-------------------------------------------------------------------------
Make sure you have GNU Fortran (gfortran) or Intel Fortran (ifort) installed.
Run the following compilation command in your terminal:

  gfortran -O3 von_neumann.f90 -o von_neumann

-------------------------------------------------------------------------
2. How to Execute
-------------------------------------------------------------------------
Run the compiled binary and pipe the input.txt file into stdin:

  von_neumann < input.txt

-------------------------------------------------------------------------
3. Input Parameter Sequence
-------------------------------------------------------------------------
Numerical Scheme (1=FTCS, 2=Dufort-Frankel, 3=Laasonen Implicit, 4=Crank-Nicolson)\nCourant number sigma\nDiffusion number r\nNumber of grid points

Website : https://thermofluidcalc.com
