xref: /libCEED/examples/fluids/vortexshedding.yaml (revision 9bc2a9358358ee74d2946142a545c20eb5a5e454)
1problem: newtonian
2
3# Time Stepping Settings
4implicit: true
5stab: supg
6
7output_freq: 10
8
9ts:
10  adapt_type: 'none'
11  type: alpha
12  dt: .05
13  max_steps: 2000
14  alpha_radius: 0.5
15
16# Reference state is used for the initial condition, zero velocity by default.
17reference:
18  pressure: 7143
19  temperature: 24.92
20# Freestream inherits reference state as default
21freestream:
22  velocity: 1,0,0
23# Small gravity vector to break symmetry so shedding can start
24g: 0,-.01,0
25
26# viscosity
27mu: 0.01
28
29q_extra: 0
30
31## DM Settings:
32degree: 2
33dm_plex_filename: examples/fluids/meshes/cylinder-q1-n20.msh
34
35# Boundary Settings
36bc_slip_z: 6
37bc_wall: 5
38bc_freestream: 1,2
39bc_slip_y: 3,4
40wall_comps: 1,2,3
41
42# Note: we prefer to use primitive variables
43state_var: primitive
44
45dm_view:
46ts_monitor:
47snes_lag_jacobian: 20
48snes_lag_jacobian_persists:
49
50#pmat_pbdiagonal:
51#ksp_type: bcgsl
52#pc_type: vpbjacobi
53#amat_type: shell
54