= Fortran codes = == Hello World == {{{#!fortran !hello.f90: display a message on the screen program helloworld print *, "Hello, F90 world." end program helloworld }}} == Compile with GNU Fortran == {{{gfortran hello.f90}}} == Compile with PGI Fortran == {{{pgf90 hello.f90}}} == Compile with Intel Fortran == {{{ifort hello.f90}}} == Links for tutorial == * [[http://en.wikibooks.org/wiki/Fortran|wikibooks]] == Examples of Job Script == [[https://wiki.hpc.tulane.edu/trac/wiki/cypress/Programming/Cexamples#ExamplesofJobscript|See Examples]] == Parallel Fortran == * [[cypress/Programming/FortranExamples/OpenMpFortran|OpenMP examples in Fortran]] * [[cypress/Programming/FortranExamples/MpiFortran|MPI examples in Fortran]] == More Examples == * [[cypress/Programming/ApproximatePi|Approximate Pi]] * [[cypress/Programming/HeatMassTransfer|Heat/Mass Transfer]] * [[cypress/Programming/StokesFlow|Stokes Flow In a Cavity]] * [[cypress/Programming/ParticleStrengthExchangeMethod|Particle Strength Exchange Method]]