-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlidDrivenCavity.txt
44 lines (36 loc) · 1.15 KB
/
lidDrivenCavity.txt
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
# Settings file for numsim program
# Run ./numsim lid_driven_cavity.txt
# specify the scenario that is run
scenario = LidDrivenCavity
# constants
kappa = 1230 # gas constant
rho0 = 100
mass = auto # mass of the individual particle. Using [auto] assigns a reasonable parameter based on other simulation parameters
mu = 3.5 # kinematic viscosity of the fluid
numberOfParticles = 5000
# domain
physicalSizeX = 2.0 # physical size of the domain
physicalSizeY = 2.0
nCellsX = 128 # number of cells in all spacial directions
nCellsY = 128
Boundary top {
thickness = 3;
velocityX = 1;
}
Boundary bottom {
thickness = 3;
}
Boundary left {
thickness = 3;
}
Boundary right {
thickness = 3;
}
# time
endTime = 10.0
dt = auto # simulation stepping time. Using [auto] assigns a safe value in terms of simulation stability
vs_dt = 0.1
# misc
gX = 0.0 # external forces, set to (gX,gY) = (0,-9.81) to account for gravity
gY = 0.0
kernelFunction = Gaussian # specify which kernel function gets used [Gaussian, CubicSpline]