inputs
This commit is contained in:
138
input/aorta.yaml
Executable file
138
input/aorta.yaml
Executable file
@ -0,0 +1,138 @@
|
||||
# Set of default parameters for steady Navier-Stokes
|
||||
mesh: '/home/yeye/Desktop/PhD/AORTA/MESH/coaorta/H1/coaortaH1.h5'
|
||||
density: 1.119
|
||||
dynamic_viscosity: 0.0483
|
||||
stokes: False
|
||||
|
||||
io:
|
||||
write_hdf5: True
|
||||
write_hdf5_timeseries: False
|
||||
write_xdmf: True
|
||||
write_path: '/home/yeye/Desktop/coaorta'
|
||||
restart:
|
||||
path: '' # './projects/nse_coa3d/results/test_restart2/'
|
||||
time: 0
|
||||
write_checkpoints: true
|
||||
write_velocity: 'update' # tentative
|
||||
log: False
|
||||
|
||||
|
||||
boundary_conditions:
|
||||
- id: 2
|
||||
type: 'dirichlet'
|
||||
value: ['0','0','U*sin(DOLFIN_PI*t/Th)*(t<=Th) + (Th<t)*(3.67949466208*U*sin(9*DOLFIN_PI*t/Th)*exp(-t*10))']
|
||||
degree: 3
|
||||
parameters:
|
||||
U: -30 # 60 original
|
||||
Th: 0.35 # 0.35 original
|
||||
t: 0
|
||||
- id: 1
|
||||
type: 'dirichlet'
|
||||
value: ['0','0','0']
|
||||
degree: 2
|
||||
- id: 3
|
||||
type: 'windkessel'
|
||||
value: [10,0.01,1000]
|
||||
p0: [47,1333.223874]
|
||||
- id: 4
|
||||
type: 'windkessel'
|
||||
value: [250,0.0001,8000] # [R,C,R_d]
|
||||
p0: [47,1333.223874]
|
||||
- id: 5
|
||||
type: 'windkessel'
|
||||
value: [250,0.0001,8000] # [R,C,R_d]
|
||||
p0: [47,1333.223874]
|
||||
- id: 6
|
||||
type: 'windkessel'
|
||||
value: [250,0.0001,8000] # [R,C,R_d]
|
||||
p0: [47,1333.223874]
|
||||
|
||||
|
||||
timemarching:
|
||||
velocity_pressure_coupling: 'fractionalstep' # monolithic, fractionalstep
|
||||
|
||||
monolithic:
|
||||
timescheme: 'gmp' # generalized midpoint, steady FIXME TODO
|
||||
theta: 1 # 1: Euler, 0.5: implicit midpoint rule (one-legged)
|
||||
nonlinear:
|
||||
method: 'constant_extrapolation' # constant_extrapolation, linear_extrapolation, newton, picard, snes
|
||||
maxit: 20
|
||||
init_steps: 30
|
||||
use_aitken: 1 # 0: False, 1: Picard only, 2: all
|
||||
report: 1 # 0: None, 1: residuals, 2: residuals and energy (inflow/driving/forcing via ESSENTIAL Dbcs!)
|
||||
atol: 1.e-6 # note: dot required!!
|
||||
rtol: 1.e-16
|
||||
stol: 0.0
|
||||
|
||||
fractionalstep:
|
||||
scheme: 'CT' # CT, IPCS
|
||||
coupled_velocity: False # False faster, True needed if robin_bc implicit
|
||||
robin_bc_velocity_scheme: 'implicit' # explicit, semi-implicit, implicit
|
||||
transpiration_bc_projection: 'robin' # robin, dirichlet
|
||||
flux_report_normalize_boundary: 1
|
||||
|
||||
T: 0.8 # end time
|
||||
dt: 0.005
|
||||
write_dt: 0.05
|
||||
checkpoint_dt: 0.05 # <= 0: only last; else value + last
|
||||
report: 1 # 0: print nothing, 1: print time step and writeout, 2: 1 + flux
|
||||
|
||||
#estimation:
|
||||
# boundary_conditions:
|
||||
# - id: 2
|
||||
# type: 'dirichlet'
|
||||
# initial_stddev: [0.2]
|
||||
# parameters: [U]
|
||||
#
|
||||
# measurements:
|
||||
# -
|
||||
# mesh: '/home/yeye/Desktop/PhD/AORTA/MESH/aorta_coarse/aorta_coarse_marked.h5'
|
||||
# fe_degree: 0
|
||||
# xdmf_file: '/home/yeye/Desktop/PhD/AORTA/DATA/ct/aorta_coarse2/measurements/meas.xmf'
|
||||
# #file_root: '/home/yeye/Desktop/PhD/AORTA/DATA/ct/aorta_coarse2/measurements2/meas2.h5'
|
||||
# file_root: '/home/yeye/Desktop/PhD/AORTA/DATA/ct/aorta_coarse2/measurements/u{i}.h5'
|
||||
# indices: [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] # indices of checkpoints to be processed. 0 == all
|
||||
# noise_stddev: 1 # standard deviation of Gaussian noise
|
||||
#
|
||||
# roukf:
|
||||
# particles: 'simplex'
|
||||
# observation_operator: 'postprocessing'
|
||||
# reparameterize: True
|
||||
|
||||
#observations:
|
||||
# mesh: '/home/yeye/Desktop/PhD/AORTA/MESH/aorta_coarse/aorta_coarse_marked.h5'
|
||||
# timeseries: '/home/yeye/Desktop/PhD/AORTA/DATA/ct/aorta_coarse2/measurements'
|
||||
# stddev: 10. # noiselevel x VENC
|
||||
|
||||
# solver setup
|
||||
fem:
|
||||
velocity_space: p1 # p1 p1b/p1+ p2
|
||||
pressure_space: p1 # p1 p0/dg0 dg1
|
||||
|
||||
strain_symmetric: 0
|
||||
convection_skew_symmetric: 1 # aka Temam term
|
||||
stabilization:
|
||||
forced_normal:
|
||||
enabled: false
|
||||
boundaries: [4,5,6]
|
||||
gamma: 10
|
||||
backflow_boundaries: [3,4,5,6]
|
||||
streamline_diffusion:
|
||||
enabled: False
|
||||
parameter: 'shakib' # standard, shakib, codina, klr
|
||||
length_scale: 'metric' # average, max, metric
|
||||
consistent: False # deprecated
|
||||
Cinv: ~
|
||||
monolithic:
|
||||
infsup: False # pspg, pressure-stabilization
|
||||
graddiv: False
|
||||
consistent: False
|
||||
pressure_stab_constant: 1.
|
||||
|
||||
fix_pressure: False
|
||||
fix_pressure_point: [0., 0. , 0.]
|
||||
|
||||
linear_solver:
|
||||
method: 'lu'
|
||||
# inputfile: './projects/nse_coa3d/input/pc/MUMPS_default.yaml'
|
||||
# inputfile: './input/pc/fgmres_gamg_rtol1e-6.yaml'
|
Reference in New Issue
Block a user