5 | | REAL(KIND=qPREC) :: radius |
6 | | REAL(KIND=qPREC) :: phi |
7 | | REAL(KIND=qPREC) :: theta |
| 5 | REAL(KIND=qPREC) :: density=10 !Clump peak density |
| 6 | REAL(KIND=qPREC) :: pressure=0 !Clump Pressure |
| 7 | REAL(KIND=qPREC) :: temperature=.1 !Clump temperature |
| 8 | REAL(KIND=qPREC), DIMENSION(3) :: velocity= (/0,0,0/) !Clump velocity |
| 9 | REAL(KIND=qPREC), DIMENSION(3) :: position = (/0,0,0/) !Clump velocity |
| 10 | REAL(KIND=qPREC) :: radius=1 |
| 11 | REAL(KIND=qPREC) :: phi=0 |
| 12 | REAL(KIND=qPREC) :: theta=0 |
9 | | REAL(KIND=qPREC) :: density=10 !Clump peak density |
10 | | REAL(KIND=qPREC) :: temp=.1 !Clump temperature |
11 | | REAL(KIND=qPREC), DIMENSION(3) :: velocity= (/0,0,0/) !Clump velocity |
12 | | REAL(KIND=qPREC), DIMENSION(3) :: xloc = (/0,0,0/) !Clump velocity |
13 | | REAL(KIND=qPREC) :: B_tor=0 !Maximum Bfield for toroidal configuration |
14 | | REAL(KIND=qPREC) :: B_pol=0 !Maximum Bfield for poloidal configuration |
15 | | REAL(KIND=qPREC) :: Omega !Angular velocity for solid body rotation |
| 14 | ! REAL(KIND=qPREC) :: B_tor=0 !Maximum Bfield for toroidal configuration |
| 15 | ! REAL(KIND=qPREC) :: B_pol=0 !Maximum Bfield for poloidal configuration |
| 16 | REAL(KIND=qPREC) :: B_phi=0 |
| 17 | REAL(KIND=qPREC) :: B_theta=0 |
| 18 | REAL(KIND=qPREC) :: B_toroidal=0 !Maximum Bfield for toroidal configuration |
| 19 | REAL(KIND=qPREC) :: B_poloidal=0 !Maximum Bfield for poloidal configuration |
| 20 | REAL(KIND=qPREC) :: omega=0 !Angular velocity for solid body rotation |
| 21 | INTEGER :: RefineLevel=MaxDepth |
20 | | TYPE(ShapeDef), POINTER :: Shape |
21 | | TYPE(ClumpDef), POINTER :: previous, next |
| 28 | TYPE(ShapeDef), POINTER :: Shape => Null() |
| 29 | TYPE(PerturbationDef), POINTER :: DensityPerturbation => Null() |
| 30 | TYPE(VectorPerturbationDef), POINTER :: VelocityPerturbation => Null() |
| 31 | TYPE(PerturbationDef), DIMENSION(:), POINTER :: MagneticPerturbation => Null() |
| 32 | INTEGER :: ObjId |