diff options
| author | Connor Moore <connor@hhmoore.ca> | 2026-02-27 14:08:37 -0500 |
|---|---|---|
| committer | Connor Moore <connor@hhmoore.ca> | 2026-02-27 14:08:37 -0500 |
| commit | 6ff45fe556d3b49a1506c5882036f909c143ed85 (patch) | |
| tree | 6ff69d8ee98361a3d531472fbe67c3cbb55ac9b6 /class/mod_globals.f90 | |
| parent | 6dd6792a16954b0004cb35d14a5b25de0627c69d (diff) | |
Split up some modules and added a testing class for sectors
Diffstat (limited to 'class/mod_globals.f90')
| -rw-r--r-- | class/mod_globals.f90 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/class/mod_globals.f90 b/class/mod_globals.f90 new file mode 100644 index 0000000..7717c88 --- /dev/null +++ b/class/mod_globals.f90 @@ -0,0 +1,8 @@ +module globals +! Global variables +implicit none +integer, parameter :: n=100 +double precision, parameter :: pi=2q0*asin(1q0) ! numerical constant +double precision, parameter :: L=1.0 +logical, dimension(n) :: is_tracked = .TRUE. +end module globals |
