Advertisement
Guest User

Enzo run information

a guest
Dec 12th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.48 KB | None | 0 0
  1. ### Enzo build information:
  2. ### Compiled: Sat Dec 7 21:15:39 2013
  3. ### Machine name: hyades
  4. ### Branch: (week-of-code)
  5. ### Changeset: d478e9b94d33+
  6. ###
  7. ### Enzo was built with uncommitted changes.
  8. ### Check Enzo_Build_Diff to see the output of hg diff.
  9. ###
  10. ### Use this as a compile settings file by renaming
  11. ### it Make.settings.<keyword> and moving it to
  12. ### either src/enzo or .enzo in your home directory.
  13. ### Then, type "make load-config-<keyword>" to load
  14. ### compiler options.
  15. ###
  16. ### The current compile options are shown below.
  17. ### For more information on the meaning of the
  18. ### options, consult src/enzo/Make.config.settings.
  19.  
  20. PARAMETER_MAX_SUBGRIDS = 100000
  21. PARAMETER_MAX_BARYONS = 30
  22. PARAMETER_MAX_TASKS_PER_NODE = 8
  23. PARAMETER_MEMORY_POOL_SIZE = 100000
  24. CONFIG_INTEGERS = 64
  25. CONFIG_PARTICLE_IDS = 64
  26. CONFIG_PRECISION = 64
  27. CONFIG_PARTICLES = 64
  28. CONFIG_INITS = 64
  29. CONFIG_IO = 32
  30. CONFIG_USE_MPI = yes
  31. CONFIG_OBJECT_MODE = 64
  32. CONFIG_TASKMAP = no
  33. CONFIG_PACKED_AMR = yes
  34. CONFIG_PACKED_MEM = no
  35. CONFIG_LCAPERF = no
  36. CONFIG_PAPI = no
  37. CONFIG_PYTHON = no
  38. CONFIG_NEW_PROBLEM_TYPES = yes
  39. CONFIG_OOC_BOUNDARY = no
  40. CONFIG_ACCELERATION_BOUNDARY = yes
  41. CONFIG_ENZO_PERFORMANCE = yes
  42. CONFIG_OPT = high
  43. CONFIG_TESTING = no
  44. CONFIG_TPVEL = no
  45. CONFIG_PHOTON = yes
  46. CONFIG_HYPRE = no
  47. CONFIG_EMISSIVITY = no
  48. CONFIG_NEW_GRID_IO = yes
  49. CONFIG_FAST_SIB = yes
  50. CONFIG_USE_HDF4 = no
  51. CONFIG_BITWISE_IDENTICALITY = no
  52. CONFIG_ECUDA = no
  53. CONFIG_GRAVITY_4S = no
  54.  
  55.  
  56. diff -r d478e9b94d33 src/enzo/CommunicationPartitionGrid.C
  57. --- a/src/enzo/CommunicationPartitionGrid.C Sat Nov 23 17:39:26 2013 -0800
  58. +++ b/src/enzo/CommunicationPartitionGrid.C Sat Dec 07 21:15:39 2013 -0800
  59. @@ -122,6 +122,9 @@
  60. for (dim = 0; dim < Rank; dim++)
  61. Layout[dim] = LayoutTemp[Rank-1-dim] * NumberOfRootGridTilesPerDimensionPerProcessor;
  62.  
  63. + for(dim=0; dim<Rank; dim++)
  64. + Layout[dim]=1;
  65. +
  66. /* Force some distributions if the default is brain-dead. */
  67.  
  68. /*
  69. diff -r d478e9b94d33 src/enzo/TestProblemData.h
  70. --- a/src/enzo/TestProblemData.h Sat Nov 23 17:39:26 2013 -0800
  71. +++ b/src/enzo/TestProblemData.h Sat Dec 07 21:15:39 2013 -0800
  72. @@ -8,6 +8,8 @@
  73. {
  74.  
  75. float HydrogenFractionByMass;
  76. + float HeliumFractionByMass;
  77. + float MetalFractionByMass;
  78. float DeuteriumToHydrogenRatio;
  79.  
  80. /* multispecies */
  81.  
  82.  
  83. Parameter file:
  84. #
  85. # define problem
  86. #
  87. ProblemTypeName = AgoraRestart // Agora Isolated Galaxy Simulation
  88. TopGridRank = 3
  89. TopGridDimensions = 64 64 64
  90. SelfGravity = 1 // gravity on
  91. TopGridGravityBoundary = 1 // isolated gravity BCs
  92. LeftFaceBoundaryCondition = 3 3 3 // periodic
  93. RightFaceBoundaryCondition = 3 3 3
  94. DomainLeftEdge = 0 0 0
  95. DomainRightEdge = 1 1 1
  96.  
  97. #
  98. # problem parameters
  99. #
  100. # All parameters are in code units except as noted.
  101. AgoraRestartCenterPosition = 0.5 0.5 0.5 // code units
  102. AgoraRestartScaleLength = .000762939453
  103. AgoraRestartScaleHeight = .0000762939453
  104. AgoraRestartDiskMass = .1 // 10^10 halo mass * .002 disk mass fraction * 5
  105. AgoraRestartGasFraction = 0.8
  106. AgoraRestartDiskTemperature = 1.0e3 // Kelvin
  107. AgoraRestartHaloMass = 77.8844181 // 10^-6 cm^-3
  108. AgoraRestartHaloTemperature = 1.0e6
  109. AgoraRestartRefineAtStart = 1
  110. AgoraRestartUseMetallicityField = 1
  111. AgoraRestartCutOffZ = 0.000457763671
  112. AgoraRestartCutOffRadius = 0.00457763671
  113. AgoraRestartMetalFractionByMass = .02
  114. AgoraRestartDiskMetallicity = .1
  115. AgoraRestartHaloMetallicity = .1
  116.  
  117. #
  118. # define cosmology parameters
  119. #
  120. ComovingCoordinates = 0 // Expansion OFF
  121.  
  122. #
  123. # units
  124. #
  125. MassUnits = 1.9891e42 // 10^9 msun in grams
  126. LengthUnits = 4.04446e24 // 1.31072 mpc
  127. TimeUnits = 3.15569e16 // 1 Gyr in s
  128. GravitationalConstant = 0.0000251055 // 4*pi*G*DensityUnits*TimeUnits^2
  129.  
  130. #
  131. # set I/O and stop/start parameters
  132. #
  133. dtDataDump = 0.001
  134. DataDumpName = DD
  135. StopCycle = 1000
  136. ParallelRootGridIO = 0
  137.  
  138. #
  139. # set hydro parameters
  140. #
  141. Gamma = 1.6667
  142. PPMDiffusionParameter = 0 // diffusion off
  143. DualEnergyFormalism = 1
  144. DualEnergyFormalismEta1 = .001 // default
  145. DualEnergyFormalismEta2 = .2 // default
  146. CourantSafetyNumber = 0.1
  147. RadiativeCooling = 1
  148. MultiSpecies = 1
  149. FluxCorrection = 1
  150. ConservativeInterpolation = 1
  151. RiemannSolver = 4 // HLLC
  152. CorrectParentBoundaryFlux = 1
  153. HydroMethod = 0 // PPM
  154. Mu = 1.4
  155. OutputTemperature = 1
  156.  
  157. #
  158. # set grid refinement parameters
  159. #
  160. StaticHierarchy = 0 // dynamic hierarchy
  161. MaximumRefinementLevel = 15
  162. RefineBy = 2 // refinement factor
  163. CellFlaggingMethod = 2 4 6 13 // gas mass, particle mass, jeans length, metallicity
  164. RefineByJeansLengthSafetyFactor = 8
  165. MinimumMassForRefinement = .0001 .0001 0 0
  166. MinimumMassForRefinementLevelExponent = -.537141 -.33726 0 0
  167. MustRefineRegionLeftEdge = 0.475 0.475 0.475
  168. MustRefineRegionRightEdge = 0.525 0.525 0.525
  169. MustRefineRegionMinRefinementLevel = 5
  170. SecondDerivativeFlaggingFields = 20 // metallicity. --- see typedefs.h
  171. SecondDerivativeForRefinement = 1.99
  172. SecondDerivativeEpsilon = 0.1
  173. MetallicityRefinementMinMetallicity = 2.0
  174. MetallicityRefinementMinLevel = 15
  175. #MetallicityRefinementMinDensity =
  176.  
  177.  
  178. #
  179. # set some global parameters
  180. #
  181. PotentialIterations = 10
  182.  
  183.  
  184. MaximumGravityRefinementLevel = 15
  185. MaximumParticleRefinementLevel = 15
  186. SubgridSizeAutoAdjust = 1
  187. OptimalSubgridsPerProcessor = 16
  188. MinimumSubgridEdge = 28
  189. MaximumSubgridSize = 5000
  190. #MinimumEfficiency = 0.5
  191. NumberOfBufferZones = 4
  192.  
  193.  
  194. RadiativeCoolingModel = 1
  195. GadgetEquilibriumCooling = 0
  196. CIECooling = 0
  197. H2OpticalDepthApproximation = 1
  198. ThreeBodyRate = 0
  199. H2FormationOnDust = 0
  200. CloudyElectronFractionFactor = 0.009154
  201. MetalCooling = 1
  202. MetalCoolingTable = metal_cool_VS2010.dat
  203. RadiationRedshiftOff = 0.000000
  204. RadiationRedshiftFullOn = 0.100000
  205. RadiationRedshiftDropOff = 0.000000
  206. HydrogenFractionByMass = 0.760000
  207. DeuteriumToHydrogenRatio = 0.000068
  208. SolarMetalFractionByMass = 0.020410
  209. PhotoelectricHeating = 0
  210. PhotoelectricHeatingRate = 2e-26
  211. OutputCoolingTime = 1
  212. OutputTemperature = 1
  213. JeansRefinementColdTemperature = -1.000000
  214. RefineByResistiveLengthSafetyFactor = 2.000000
  215. MustRefineParticlesRefineToLevel = 5
  216. MustRefineParticlesRefineToLevelAutoAdjust = 0
  217. MustRefineParticlesMinimumMass = 0.000000
  218. ParticleTypeInFile = 1
  219.  
  220.  
  221. ComovingCoordinates = 0
  222. StarParticleCreation = 128
  223. BigStarFormation = 0
  224. BigStarFormationDone = 0
  225. BigStarSeparation = 0.250000
  226. SimpleQ = 1e+50
  227. SimpleRampTime = 0.100000
  228. StarFormationOncePerRootGridTimeStep = 0
  229. StarParticleFeedback = 128
  230. NumberOfParticleAttributes = 3
  231. AddParticleAttributes = 0
  232. SinkMergeDistance = 10000000272564224.000000
  233. SinkMergeMass = 0.100000
  234. StellarWindFeedback = 0
  235. StellarWindTurnOnMass = 0.100000
  236. MSStellarWindTurnOnMass = 10.000000
  237. StarMakerOverDensityThreshold = 6.46753e10 // 1.9454e-21 g/cc
  238. StarMakerSHDensityThreshold = 7e-26
  239. StarMakerMassEfficiency = 0.5
  240. StarMakerMinimumMass = 3.50137
  241. StarMakerMinimumDynamicalTime = 3000000
  242. StarMassEjectionFraction = 0.8
  243. StarMetalYield = 0.02
  244. StarEnergyToThermalFeedback = 5.93884481e-06
  245. StarEnergyToStellarUV = 1e-06
  246. StarEnergyToQuasarUV = 1.67e-06
  247. StarFeedbackDistRadius = 0
  248. StarFeedbackDistCellStep = 0
  249. StarMakerTypeIaSNe = 0
  250. StarMakerPlanetaryNebulae = 0
  251. MultiMetals = 0
  252.  
  253.  
  254. CoolingCutOffDensity1 = 0
  255. CoolingCutOffDensity2 = 1e+10
  256. CoolingCutOffTemperature = 0
  257. CoolingPowerCutOffDensity1 = 0
  258. CoolingPowerCutOffDensity2 = 1e+10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement