https://github.com/goerz/fortran_examples
Fortran example programs for Intro to Computational Physics
https://github.com/goerz/fortran_examples
fortran science teaching
Last synced: about 2 months ago
JSON representation
Fortran example programs for Intro to Computational Physics
- Host: GitHub
- URL: https://github.com/goerz/fortran_examples
- Owner: goerz
- Created: 2014-04-21T03:11:51.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2020-07-12T04:37:20.000Z (almost 5 years ago)
- Last Synced: 2025-01-12T17:12:06.417Z (4 months ago)
- Topics: fortran, science, teaching
- Language: Fortran
- Size: 47.9 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Fortran Example Programs
========================This repository contains some Fortran examples for the
[Introduction to Computational Physics][1], Summer 2014, at the University of
Kassel.
├── simple
│ ├── cylinder.f90: Illustrates simple data types, simple program
│ ├── expvalue.f90: Illustrates use of arrays
│ │ Also: subroutines/functions
│ └── eigenproblem.f90: Illustrates user-defined types,
│ use of external library routines
├── inout
│ ├── pulse.plt Gnuplot example for a simple plot (pub-ready)
│ ├── pulse_multi.plt Gnuplot example for a multi-plot (pub-ready)
│ └── read_pulse.f90: Illustrates how to read/write numerical data
├── arraypassing
│ ├── arraypassing.f90 Fortran program for illustrating array-passing concepts
│ └── Makefile Makefile for compiling arraypassing.f90 with gfortran
├── structured
│ └── eigenproblem: Version of simple/eigenproblem, using modules
│ ├── Makefile
│ ├── constants.f90
│ ├── eigenproblem.f90
│ └── globals.f90
└── library
├── eigenlib: Library version of structured/eigenproblem
│ ├── Makefile
│ ├── constants.f90
│ ├── diag.f90
│ └── eigenlib.f90: Main library module
└── eigenprog Example program using eigenlib
├── Makefile
└── eigenproblem.f90[1]: http://www.uni-kassel.de/fb10/institute/physik/forschungsgruppen/quantendynamik-und-kontrolle/lehre/computational-physics-ss-2014.html