Creating a scelton¶
First, create a scelton of a grid generating program. Create a new file with the source code in List 18, and save as "sample.f90". At this point, the grid generating program does nothing.
Compile this source code. The way to compile a source code differs by the compiler. Refer to Intel Fortran Compiler (Windows) for the procedure to compile using Intel Fortran Compiler and gfortran.
1program SampleProgram
2 implicit none
3 include 'cgnslib_f.h'
4end program SampleProgram
Make sure that the compilation succeeds.