Scrambler
1
|
Public variables that need to be accessed throughout the program. More...
Data Types | |
type | DomainDef |
Defines a physical rectangular region. More... | |
type | LevelDef |
Defines a level and its parameters. More... | |
Public Member Functions | |
pure elemental LOGICAL function | ISNAN (x) |
Checks if a value is NAN. | |
pure elemental LOGICAL function | ISINFNAN (x) |
Checks if a value is NAN or INF. | |
INTEGER function | BoolToInt (flag) |
Converts .TRUE. and .FALSE. to -1 and 0, respectively (shouldn't Fortran have this already?). | |
subroutine | OutputIntArray (a) |
subroutine | OutputRealArray (a) |
subroutine | OutputDoubleArray (a) |
subroutine | CheckAllocation (i, size, caller, err) |
subroutine | CheckDeAllocation (i, size, err, caller) |
CHARACTER(LEN=10) function | printsize (x) |
CHARACTER(LEN=11) function | printtime (x) |
subroutine | CheckSlabSymmetric (q) |
Public Attributes | |
REAL(KIND=qPREC) | InitTime |
INTEGER | InfoAllocator = 1 |
INTEGER | MessageAllocator = 2 |
INTEGER | SweepAllocator = 3 |
REAL(KIND=qPREC), dimension(3) | allocator = 0 |
REAL(KIND=qPREC), dimension(3) | maxallocation = 0 |
REAL(KIND=qPREC) | NumCellsByLevel |
INTEGER, parameter | PACK_INTEGER_SIZE = 4 |
INTEGER, parameter | PACK_FLOAT_SIZE = 4 |
INTEGER, parameter | PACK_DOUBLE_SIZE = 8 |
INTEGER, parameter | PACK_BOX_SIZE = 24 |
INTEGER, dimension(3, 2), parameter | TERMINATIONBOX = RESHAPE((/-1,-1,-1,-1,-1,-1/), (/3, 2/)) |
INTEGER, parameter | TERMINATION_BOX_BYTES = 24 |
Parameters that everyone should be aware of | |
INTEGER, parameter | qPrec = SELECTED_REAL_KIND(14, 32) |
INTEGER, parameter | xPrec = SELECTED_REAL_KIND(14, 32) |
INTEGER, parameter | ROOT_LEVEL = 0 |
INTEGER, parameter | EXTRAPOLATED_BOUND = 1 |
INTEGER, parameter | PERIODIC_BOUND = 2 |
INTEGER, parameter | REFLECT_WALL = 3 |
INTEGER, parameter | REFLECT_BPARALLEL = 4 |
INTEGER, parameter | REFLECT_CYLINDRICAL = 5 |
INTEGER, parameter | INTERNAL_BOUND = 999 |
INTEGER, parameter | MaxDepth = 16 |
INTEGER, parameter | MAX_SUBGRIDS = 2048 |
INTEGER, parameter | MAX_DIMS = 3 |
INTEGER, parameter | NEIGHBORCHILD = -999 |
REAL(KIND=qPREC), parameter | UNDEFINED = -1e30 |
REAL(KIND=qPREC), parameter | half = .5d0 |
REAL(KIND=qPREC), parameter | one = 1d0 |
REAL(KIND=qPREC), parameter | two = 2d0 |
REAL(KIND=qPrec), parameter | ZERO = 0d0 |
INTEGER, parameter | IEVERYWHERE = 0 |
INTEGER, parameter | IBOUNDARIES = 1 |
INTEGER, dimension(3, 2), parameter | IBOUNDARY = RESHAPE((/2,3,4,5,6,7/), (/3,2/)) |
INTEGER, parameter | NON_THREADED = -1 |
INTEGER, parameter | PSEUDO_THREADED = 0 |
INTEGER, parameter | THREADED = 1 |
Level data type declarations | |
TYPE(LevelDef), dimension(:), allocatable | levels |
Domain data type declarations | |
TYPE(DomainDef), dimension(:), allocatable | Domains |
Variables needed by DataInfoOps to synchronize tree | |
INTEGER | NrVars |
INTEGER | GVars |
INTEGER | EGVars |
INTEGER | TDVars |
INTEGER | nFlux |
INTEGER | nProlongate |
INTEGER | nRestrict |
INTEGER | nEMF |
INTEGER | nAux |
INTEGER | nEllipticTransfers |
INTEGER, dimension(:), allocatable | TimeDerivFields |
INTEGER, dimension(:), allocatable | GCopyFields |
INTEGER, dimension(:), allocatable | EGCopyFields |
INTEGER, dimension(:), allocatable | ProlongateFields |
INTEGER, dimension(:), allocatable | RestrictFields |
INTEGER, dimension(:), allocatable | FluxFields |
INTEGER, dimension(:), allocatable | invFluxFields |
INTEGER, dimension(:), allocatable | auxFields |
INTEGER, dimension(:), allocatable | InterpMethod |
INTEGER, dimension(:), allocatable | EllipticTransferFields |
INTEGER, dimension(3) | EmfLoc |
INTEGER, dimension(3) | EmfDir |
LOGICAL | MaintainAuxArrays |
Miscellaneous variables - probably belong elsewhere | |
INTEGER | MPI_ID = 0 |
INTEGER | MPI_NP |
INTEGER | iThreaded = -1 |
REAL(KIND=qPREC), dimension(2) | LevelBalance = (/0d0,0d0/) |
LOGICAL | lSkipProfile = .true. |
LOGICAL | lKnapSack = .false. |
LOGICAL | lTimingLog = .false. |
LOGICAL | lParticles = .false. |
LOGICAL | lElliptic = .false. |
LOGICAL | lExplicit = .false. |
INTEGER | MinimumGridPoints = 4 |
LOGICAL | lStressTest = .false. |
REAL, dimension(:), allocatable | WorkLoad |
REAL | MySpeedFactor = 1 |
REAL(8) | StartTime |
LOGICAL, dimension(3) | lEllipticPeriodic = .false. |
LOGICAL, dimension(3) | lHydroPeriodic = .false. |
LOGICAL | lStoreMassFlux = .false. |
LOGICAL | lNeedMeanDensity = .false. |
INTEGER, dimension(3) | nperiodic_overlaps = 1 |
Grid global parameters | |
LOGICAL, dimension(-2:maxdepth) | lRegridLevel |
INTEGER | ndim = 2 |
INTEGER | MaxLevel = 0 |
INTEGER | LastStaticLevel = -1 |
LOGICAL | lUseOriginalNewSubGrids = .false. |
INTEGER | FinestLevel |
INTEGER | RestartLevel |
INTEGER | BaseLevel = -2 |
INTEGER | nDomains = 1 |
REAL(KIND=qPREC), dimension(3, 2) | GxBounds |
INTEGER, dimension(3) | GmX = (/32,32,1/) |
INTEGER, dimension(3, 2) | GmGlobal |
INTEGER, dimension(3, 2) | Gmthbc = 1 |
LOGICAL, dimension(3) | lAnyPeriodic = .false. |
INTEGER | hyperbolic_mbc |
INTEGER | elliptic_mbc |
INTEGER | source_mbc |
INTEGER | particle_mbc |
INTEGER | afterstep_mbc |
Time stepping variables | |
REAL(KIND=qPrec) | initial_maxspeed |
REAL(KIND=qPrec), dimension(3) | cfl_vars = (/1.0,.3,.5/) |
INTEGER | current_frame |
INTEGER | start_frame = 0 |
INTEGER | final_frame |
INTEGER | restart_frame |
REAL(KIND=qPREC) | current_time |
REAL(KIND=qPREC) | start_time = 0d0 |
REAL(KIND=qPREC) | final_time |
REAL(KIND=qPREC) | restart_time |
LOGICAL | RestartStep = .false. |
LOGICAL | lRequestRestart = .false. |
IO-Relevant variables. | |
LOGICAL | lRestart = .false. |
LOGICAL | lRegrid = .false. |
LOGICAL | lPostProcess = .false. |
LOGICAL | lReOutput = .false. |
INTEGER | iDataFileType = 0 |
LOGICAL | lPrintDebugFrame = .false. |
NameList Variables | |
INTEGER, parameter | GLOBAL_DATA_HANDLE = 76 |
CHARACTER(LEN=11), parameter | GLOBAL_DATA_FILE = "global.data" |
INTEGER, parameter | PHYSICS_DATA_HANDLE = 73 |
CHARACTER(LEN=12), parameter | PHYSICS_DATA_FILE = "physics.data" |
INTEGER, parameter | MODULES_DATA_HANDLE = 74 |
CHARACTER(LEN=12), parameter | MODULES_DATA_FILE = "modules.data" |
INTEGER, parameter | COMMUNICATION_DATA_HANDLE = 77 |
CHARACTER(LEN=18), parameter | COMMUNICATION_DATA_FILE = "communication.data" |
INTEGER, parameter | PROFILE_DATA_HANDLE = 78 |
CHARACTER(LEN=12), parameter | PROFILE_DATA_FILE = "profile.data" |
INTEGER, parameter | SCALES_DATA_HANDLE = 79 |
CHARACTER(LEN=11), parameter | SCALES_DATA_FILE = "scales.data" |
INTEGER, parameter | PROBLEM_DATA_HANDLE = 80 |
INTEGER, parameter | TIMER_LOG_HANDLE = 81 |
INTEGER, parameter | COMM_LOG_HANDLE = 82 |
INTEGER, parameter | PROCESS_DATA_HANDLE = 83 |
CHARACTER(LEN=12), parameter | PROCESS_DATA_FILE = "process.data" |
INTEGER, parameter | TOTALS_DATA_HANDLE = 84 |
CHARACTER(LEN=16), parameter | TOTALS_DATA_FILE = "out/totals.dat" |
INTEGER, parameter | HISTOGRAM_DATA_HANDLE = 85 |
INTEGER, parameter | BOV_DATA_HANDLE = 86 |
INTEGER, parameter | PPM_DATA_HANDLE = 87 |
INTEGER, parameter | BONDI_DATA_HANDLE = 88 |
INTEGER, parameter | SPECTRA_DATA_HANDLE = 89 |
INTEGER, parameter | LAYOUT_DATA_HANDLE = 90 |
INTEGER, parameter | CAMERA_DATA_HANDLE = 91 |
Public variables that need to be accessed throughout the program.
Definition at line 32 of file global_declarations.f90.
Checks if a value is NAN.
x | value to check |
Definition at line 251 of file global_declarations.f90.
pure elemental LOGICAL function ISINFNAN | ( | REAL(KIND=qprec), intent(in) | x | ) |
Checks if a value is NAN or INF.
x | value to check |
Definition at line 260 of file global_declarations.f90.
INTEGER function BoolToInt | ( | LOGICAL | flag | ) |
Converts .TRUE. and .FALSE. to -1 and 0, respectively (shouldn't Fortran have this already?).
flag | The logical value to be converted. |
Definition at line 269 of file global_declarations.f90.
subroutine OutputIntArray | ( | INTEGER, dimension(:,:) | a | ) |
Definition at line 282 of file global_declarations.f90.
subroutine OutputRealArray | ( | REAL, dimension(:,:) | a | ) |
Definition at line 300 of file global_declarations.f90.
subroutine OutputDoubleArray | ( | REAL(8), dimension(:,:) | a | ) |
Definition at line 319 of file global_declarations.f90.
subroutine CheckAllocation | ( | INTEGER | i, |
INTEGER | size, | ||
CHARACTER(LEN=*), optional | caller, | ||
INTEGER, optional | err | ||
) |
Definition at line 338 of file global_declarations.f90.
subroutine CheckDeAllocation | ( | INTEGER | i, |
INTEGER | size, | ||
INTEGER, optional | err, | ||
CHARACTER(LEN=*), optional | caller | ||
) |
Definition at line 356 of file global_declarations.f90.
CHARACTER(LEN=10) function printsize | ( | REAL(KIND=qPREC) | x | ) |
Definition at line 374 of file global_declarations.f90.
CHARACTER(LEN=11) function printtime | ( | REAL(KIND=qPREC) | x | ) |
Definition at line 390 of file global_declarations.f90.
subroutine CheckSlabSymmetric | ( | REAL(KIND=qPREC), dimension(:,:,:) | q | ) |
Definition at line 421 of file global_declarations.f90.
INTEGER, parameter qPrec = SELECTED_REAL_KIND(14, 32) |
Definition at line 43 of file global_declarations.f90.
INTEGER, parameter xPrec = SELECTED_REAL_KIND(14, 32) |
Definition at line 44 of file global_declarations.f90.
INTEGER, parameter ROOT_LEVEL = 0 |
Definition at line 45 of file global_declarations.f90.
INTEGER, parameter EXTRAPOLATED_BOUND = 1 |
Definition at line 46 of file global_declarations.f90.
INTEGER, parameter PERIODIC_BOUND = 2 |
Definition at line 47 of file global_declarations.f90.
INTEGER, parameter REFLECT_WALL = 3 |
Definition at line 48 of file global_declarations.f90.
INTEGER, parameter REFLECT_BPARALLEL = 4 |
Definition at line 49 of file global_declarations.f90.
INTEGER, parameter REFLECT_CYLINDRICAL = 5 |
Definition at line 50 of file global_declarations.f90.
INTEGER, parameter INTERNAL_BOUND = 999 |
Definition at line 51 of file global_declarations.f90.
INTEGER, parameter MaxDepth = 16 |
Definition at line 52 of file global_declarations.f90.
INTEGER, parameter MAX_SUBGRIDS = 2048 |
Definition at line 53 of file global_declarations.f90.
INTEGER, parameter MAX_DIMS = 3 |
Definition at line 54 of file global_declarations.f90.
INTEGER, parameter NEIGHBORCHILD = -999 |
Definition at line 55 of file global_declarations.f90.
REAL(KIND=qPREC), parameter UNDEFINED = -1e30 |
Definition at line 56 of file global_declarations.f90.
REAL(KIND=qPREC), parameter half = .5d0 |
Definition at line 56 of file global_declarations.f90.
REAL(KIND=qPREC), parameter one = 1d0 |
Definition at line 56 of file global_declarations.f90.
REAL(KIND=qPREC), parameter two = 2d0 |
Definition at line 56 of file global_declarations.f90.
Definition at line 57 of file global_declarations.f90.
INTEGER, parameter IEVERYWHERE = 0 |
Definition at line 58 of file global_declarations.f90.
INTEGER, parameter IBOUNDARIES = 1 |
Definition at line 58 of file global_declarations.f90.
INTEGER, dimension(3,2), parameter IBOUNDARY = RESHAPE((/2,3,4,5,6,7/), (/3,2/)) |
Definition at line 59 of file global_declarations.f90.
INTEGER, parameter NON_THREADED = -1 |
Definition at line 60 of file global_declarations.f90.
INTEGER, parameter PSEUDO_THREADED = 0 |
Definition at line 60 of file global_declarations.f90.
INTEGER, parameter THREADED = 1 |
Definition at line 60 of file global_declarations.f90.
Definition at line 89 of file global_declarations.f90.
Definition at line 100 of file global_declarations.f90.
INTEGER NrVars |
Definition at line 105 of file global_declarations.f90.
INTEGER GVars |
Definition at line 106 of file global_declarations.f90.
INTEGER EGVars |
Definition at line 107 of file global_declarations.f90.
INTEGER TDVars |
Definition at line 108 of file global_declarations.f90.
INTEGER nFlux |
Definition at line 109 of file global_declarations.f90.
INTEGER nProlongate |
Definition at line 110 of file global_declarations.f90.
INTEGER nRestrict |
Definition at line 111 of file global_declarations.f90.
INTEGER nEMF |
Definition at line 112 of file global_declarations.f90.
INTEGER nAux |
Definition at line 113 of file global_declarations.f90.
INTEGER nEllipticTransfers |
Definition at line 114 of file global_declarations.f90.
INTEGER, dimension(:), allocatable TimeDerivFields |
Definition at line 115 of file global_declarations.f90.
INTEGER, dimension(:), allocatable GCopyFields |
Definition at line 116 of file global_declarations.f90.
INTEGER, dimension(:), allocatable EGCopyFields |
Definition at line 117 of file global_declarations.f90.
INTEGER, dimension(:), allocatable ProlongateFields |
Definition at line 118 of file global_declarations.f90.
INTEGER, dimension(:), allocatable RestrictFields |
Definition at line 119 of file global_declarations.f90.
INTEGER, dimension(:), allocatable FluxFields |
Definition at line 120 of file global_declarations.f90.
INTEGER, dimension(:), allocatable invFluxFields |
Definition at line 121 of file global_declarations.f90.
INTEGER, dimension(:), allocatable auxFields |
Definition at line 122 of file global_declarations.f90.
INTEGER, dimension(:), allocatable InterpMethod |
Definition at line 123 of file global_declarations.f90.
INTEGER, dimension(:), allocatable EllipticTransferFields |
Definition at line 124 of file global_declarations.f90.
INTEGER, dimension(3) EmfLoc |
Definition at line 125 of file global_declarations.f90.
INTEGER, dimension(3) EmfDir |
Definition at line 126 of file global_declarations.f90.
LOGICAL MaintainAuxArrays |
Definition at line 127 of file global_declarations.f90.
INTEGER MPI_ID = 0 |
Definition at line 132 of file global_declarations.f90.
INTEGER MPI_NP |
Definition at line 132 of file global_declarations.f90.
INTEGER iThreaded = -1 |
Definition at line 133 of file global_declarations.f90.
REAL(KIND=qPREC), dimension(2) LevelBalance = (/0d0,0d0/) |
Definition at line 134 of file global_declarations.f90.
LOGICAL lSkipProfile = .true. |
Definition at line 135 of file global_declarations.f90.
LOGICAL lKnapSack = .false. |
Definition at line 136 of file global_declarations.f90.
LOGICAL lTimingLog = .false. |
Definition at line 137 of file global_declarations.f90.
LOGICAL lParticles = .false. |
Definition at line 138 of file global_declarations.f90.
LOGICAL lElliptic = .false. |
Definition at line 139 of file global_declarations.f90.
LOGICAL lExplicit = .false. |
Definition at line 140 of file global_declarations.f90.
INTEGER MinimumGridPoints = 4 |
Definition at line 141 of file global_declarations.f90.
LOGICAL lStressTest = .false. |
Definition at line 142 of file global_declarations.f90.
REAL, dimension(:), allocatable WorkLoad |
Definition at line 143 of file global_declarations.f90.
REAL MySpeedFactor = 1 |
Definition at line 144 of file global_declarations.f90.
REAL(8) StartTime |
Definition at line 145 of file global_declarations.f90.
LOGICAL, dimension(3) lEllipticPeriodic = .false. |
Definition at line 146 of file global_declarations.f90.
LOGICAL, dimension(3) lHydroPeriodic = .false. |
Definition at line 147 of file global_declarations.f90.
LOGICAL lStoreMassFlux = .false. |
Definition at line 148 of file global_declarations.f90.
LOGICAL lNeedMeanDensity = .false. |
Definition at line 149 of file global_declarations.f90.
INTEGER, dimension(3) nperiodic_overlaps = 1 |
Definition at line 150 of file global_declarations.f90.
LOGICAL, dimension(-2:maxdepth) lRegridLevel |
Definition at line 155 of file global_declarations.f90.
INTEGER ndim = 2 |
Definition at line 156 of file global_declarations.f90.
INTEGER MaxLevel = 0 |
Definition at line 157 of file global_declarations.f90.
INTEGER LastStaticLevel = -1 |
Definition at line 158 of file global_declarations.f90.
LOGICAL lUseOriginalNewSubGrids = .false. |
Definition at line 159 of file global_declarations.f90.
INTEGER FinestLevel |
Definition at line 160 of file global_declarations.f90.
INTEGER RestartLevel |
Definition at line 161 of file global_declarations.f90.
INTEGER BaseLevel = -2 |
Definition at line 162 of file global_declarations.f90.
INTEGER nDomains = 1 |
Definition at line 163 of file global_declarations.f90.
REAL(KIND=qPREC), dimension(3,2) GxBounds |
Definition at line 164 of file global_declarations.f90.
INTEGER, dimension(3) GmX = (/32,32,1/) |
Definition at line 165 of file global_declarations.f90.
INTEGER, dimension(3,2) GmGlobal |
Definition at line 166 of file global_declarations.f90.
INTEGER, dimension(3,2) Gmthbc = 1 |
Definition at line 167 of file global_declarations.f90.
LOGICAL, dimension(3) lAnyPeriodic = .false. |
Definition at line 168 of file global_declarations.f90.
INTEGER hyperbolic_mbc |
Definition at line 169 of file global_declarations.f90.
INTEGER elliptic_mbc |
Definition at line 170 of file global_declarations.f90.
INTEGER source_mbc |
Definition at line 171 of file global_declarations.f90.
INTEGER particle_mbc |
Definition at line 172 of file global_declarations.f90.
INTEGER afterstep_mbc |
Definition at line 173 of file global_declarations.f90.
REAL(KIND=qPrec) initial_maxspeed |
Definition at line 178 of file global_declarations.f90.
Definition at line 179 of file global_declarations.f90.
INTEGER current_frame |
Definition at line 180 of file global_declarations.f90.
INTEGER start_frame = 0 |
Definition at line 181 of file global_declarations.f90.
INTEGER final_frame |
Definition at line 182 of file global_declarations.f90.
INTEGER restart_frame |
Definition at line 183 of file global_declarations.f90.
REAL(KIND=qPREC) current_time |
Definition at line 184 of file global_declarations.f90.
REAL(KIND=qPREC) start_time = 0d0 |
Definition at line 184 of file global_declarations.f90.
REAL(KIND=qPREC) final_time |
Definition at line 184 of file global_declarations.f90.
REAL(KIND=qPREC) restart_time |
Definition at line 184 of file global_declarations.f90.
LOGICAL RestartStep = .false. |
Definition at line 185 of file global_declarations.f90.
LOGICAL lRequestRestart = .false. |
Definition at line 186 of file global_declarations.f90.
REAL(KIND=qPREC) InitTime |
Definition at line 189 of file global_declarations.f90.
LOGICAL lRestart = .false. |
Definition at line 194 of file global_declarations.f90.
LOGICAL lRegrid = .false. |
Definition at line 195 of file global_declarations.f90.
LOGICAL lPostProcess = .false. |
Definition at line 196 of file global_declarations.f90.
LOGICAL lReOutput = .false. |
Definition at line 197 of file global_declarations.f90.
INTEGER iDataFileType = 0 |
Definition at line 198 of file global_declarations.f90.
LOGICAL lPrintDebugFrame = .false. |
Definition at line 199 of file global_declarations.f90.
INTEGER, parameter GLOBAL_DATA_HANDLE = 76 |
Definition at line 208 of file global_declarations.f90.
CHARACTER(LEN=11), parameter GLOBAL_DATA_FILE = "global.data" |
Definition at line 209 of file global_declarations.f90.
INTEGER, parameter PHYSICS_DATA_HANDLE = 73 |
Definition at line 210 of file global_declarations.f90.
CHARACTER(LEN=12), parameter PHYSICS_DATA_FILE = "physics.data" |
Definition at line 211 of file global_declarations.f90.
INTEGER, parameter MODULES_DATA_HANDLE = 74 |
Definition at line 212 of file global_declarations.f90.
CHARACTER(LEN=12), parameter MODULES_DATA_FILE = "modules.data" |
Definition at line 213 of file global_declarations.f90.
INTEGER, parameter COMMUNICATION_DATA_HANDLE = 77 |
Definition at line 214 of file global_declarations.f90.
CHARACTER(LEN=18), parameter COMMUNICATION_DATA_FILE = "communication.data" |
Definition at line 215 of file global_declarations.f90.
INTEGER, parameter PROFILE_DATA_HANDLE = 78 |
Definition at line 216 of file global_declarations.f90.
CHARACTER(LEN=12), parameter PROFILE_DATA_FILE = "profile.data" |
Definition at line 217 of file global_declarations.f90.
INTEGER, parameter SCALES_DATA_HANDLE = 79 |
Definition at line 218 of file global_declarations.f90.
CHARACTER(LEN=11), parameter SCALES_DATA_FILE = "scales.data" |
Definition at line 219 of file global_declarations.f90.
INTEGER, parameter PROBLEM_DATA_HANDLE = 80 |
Definition at line 220 of file global_declarations.f90.
INTEGER, parameter TIMER_LOG_HANDLE = 81 |
Definition at line 221 of file global_declarations.f90.
INTEGER, parameter COMM_LOG_HANDLE = 82 |
Definition at line 222 of file global_declarations.f90.
INTEGER, parameter PROCESS_DATA_HANDLE = 83 |
Definition at line 223 of file global_declarations.f90.
CHARACTER(LEN=12), parameter PROCESS_DATA_FILE = "process.data" |
Definition at line 224 of file global_declarations.f90.
INTEGER, parameter TOTALS_DATA_HANDLE = 84 |
Definition at line 225 of file global_declarations.f90.
CHARACTER(LEN=16), parameter TOTALS_DATA_FILE = "out/totals.dat" |
Definition at line 226 of file global_declarations.f90.
INTEGER, parameter HISTOGRAM_DATA_HANDLE = 85 |
Definition at line 227 of file global_declarations.f90.
INTEGER, parameter BOV_DATA_HANDLE = 86 |
Definition at line 228 of file global_declarations.f90.
INTEGER, parameter PPM_DATA_HANDLE = 87 |
Definition at line 229 of file global_declarations.f90.
INTEGER, parameter BONDI_DATA_HANDLE = 88 |
Definition at line 230 of file global_declarations.f90.
INTEGER, parameter SPECTRA_DATA_HANDLE = 89 |
Definition at line 231 of file global_declarations.f90.
INTEGER, parameter LAYOUT_DATA_HANDLE = 90 |
Definition at line 232 of file global_declarations.f90.
INTEGER, parameter CAMERA_DATA_HANDLE = 91 |
Definition at line 233 of file global_declarations.f90.
INTEGER InfoAllocator = 1 |
Definition at line 236 of file global_declarations.f90.
INTEGER MessageAllocator = 2 |
Definition at line 236 of file global_declarations.f90.
INTEGER SweepAllocator = 3 |
Definition at line 236 of file global_declarations.f90.
REAL(KIND=qPREC), dimension(3) allocator = 0 |
Definition at line 237 of file global_declarations.f90.
REAL(KIND=qPREC), dimension(3) maxallocation = 0 |
Definition at line 237 of file global_declarations.f90.
REAL(KIND=qPREC) NumCellsByLevel |
Definition at line 238 of file global_declarations.f90.
INTEGER, parameter PACK_INTEGER_SIZE = 4 |
Definition at line 240 of file global_declarations.f90.
INTEGER, parameter PACK_FLOAT_SIZE = 4 |
Definition at line 241 of file global_declarations.f90.
INTEGER, parameter PACK_DOUBLE_SIZE = 8 |
Definition at line 242 of file global_declarations.f90.
INTEGER, parameter PACK_BOX_SIZE = 24 |
Definition at line 243 of file global_declarations.f90.
INTEGER, dimension(3,2), parameter TERMINATIONBOX = RESHAPE((/-1,-1,-1,-1,-1,-1/), (/3, 2/)) |
Definition at line 244 of file global_declarations.f90.
INTEGER, parameter TERMINATION_BOX_BYTES = 24 |
Definition at line 245 of file global_declarations.f90.