File size: 5,961 Bytes
77eca65 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | #-------------------------------------------------------------------------------
#---GENERAL---------------------------------------------------------------------
#-------------------------------------------------------------------------------
#---APPLICATION SETTINGS--------------------------------------------------------
flowSolver = true
gridGenerator = false
restartFile.default = false
initRestart = false
calcBcResidual = false #true
#---FLOW VARIABLES--------------------------------------------------------------
referenceLength = 1.0 # Cylinder diameter
Ma = 0.2
Re = 75
periodicCartesianDir=[0, 0, 1]
#---I/O-------------------------------------------------------------------------
outputDir.default = "out_lb/"
geometryInputFileName.default = "geometry.toml"
gridInputFileName = "grid.Netcdf"
gridOutputFileName = "grid.Netcdf"
outputInitialCondition = true #false
#---BALANCING & WEIGHTING-------------------------------------------------------
partitionCellOffspringThreshold = 200000
#---NUMERICAL PROPERTIES--------------------------------------------------------
nDim = 3
noSolvers = 2
multiSolverGrid = true
executionRecipe = "RECIPE_BASE"
solvertype.default = "MAIA_UNIFIED"
#---SOLUTION PROPERTIES---------------------------------------------------------
restartTimeStep = 0
timeSteps = 250000
solutionInterval.default = 10000
solutionInterval.1 = 10000000
restartInterval = 50000 # Here, means never
residualInterval = 64000000 # Here, means never
#---GRID PROPERTIES-------------------------------------------------------------
maxNoCells = 80000000
scratchSize = 20.0
reductionFactor = 1.0 # initial cell length is multiplied with this factor
maxRfnmntLvl = 12
domainLength = 102.4
#-------------------------------------------------------------------------------
#---LBM-------------------------------------------------------------------------
#-------------------------------------------------------------------------------
#---I/O-------------------------------------------------------------------------
outputDir.0 = "out_lb/"
geometryInputFileName.0 = "geometry.toml"
useNonSpecifiedRestartFile = true
#---NUMERICAL PROPERTIES--------------------------------------------------------
solvertype.0 = "MAIA_LATTICE_BOLTZMANN"
solverMethod = "MAIA_LATTICE_CUMULANT"
noDistributions = 27
densityFluctuations = false
interfaceMethod = "FILIPPOVA"
multiBCTreatment = "I-W-P"
inOutTest = "perpOp"
interpolationDistMethod = "STD" # analytic wall distance calculation
gridCutTest = "SAT"
interfaceCellSize = 10.0 # ratio of number interface cells to overall cells
#---FLOW INITIALIZATION---------------------------------------------------------
initMethod = "LB_LAMINAR_CYLINDER_INIT"
initVelocityMethod = "fromSTL"
bndNormalMethod = "fromSTL"
# ramp viscosity for reasons of stability
tanhInit = false # switch for asymptotic increase of Re
initRe = 100.0 # initial Re
initStartTime = 0 # global time at which the increase starts (in iterations)
initTime = 2000 # time span for asymptotic increase (>99% of final value) (in iterations)
#---GRID PROPERTIES-------------------------------------------------------------
noHaloLayers.0 = 2
haloMode = 2
#---SOURCE TERMS----------------------------------------------------------------
lbSrcTerms = ["LB_SPONGE_EQDYNAM"]
#---Sponge
spongeLayerLayout = 1
spongeLayerThickness = 3.0 # thickness in STL units
spongeThicknessFactor = [1.0,1.0, 1.0,2.0, 0.0,0.0] # thickness factor [negX,posX, negY,posY, negZ,posZ]
spongeSigma = 0.3
spongeTrgRho = 1.0
#---FORCE LOG-------------------------------------------------------------------
calculateWallForces = true
forceFileName = "force_Re75_RL12_Cum_sponge.log"
calculateWallForcesInterval = 500
#-------------------------------------------------------------------------------
#---POST------------------------------------------------------------------------
#-------------------------------------------------------------------------------
restartFile.1 = false
#---I/O-------------------------------------------------------------------------
solutionOffset.1 = 100000000000000000 # Here, never !
geometryInputFileName.1 = "geometry.toml"
#---NUMERICAL PROPERTIES--------------------------------------------------------
solvertype.1 = "MAIA_POST_DATA"
postProcessing = false
noPostProcessing = 1
postProcessingSolverIds = [0]
postProcessingType_0 = "POSTPROCESSING_LB"
postProcessingOps_0 = ["PP_PROBE_POINT_IN"]
#--point sampling
pp_probePath = "probe/"
pp_probeCoordinates = [ -1.0, 0.0]
#---GRID PROPERTIES-------------------------------------------------------------
noHaloLayers.1 = 1
|