This commit is contained in:
James McClure 2021-12-12 13:16:01 -05:00
parent 499b765d64
commit fb99e78815

View File

@ -25,9 +25,10 @@ For the case considered in ``example/DiscPack`` we specify the following informa
}
Color {
capillary_number = -1e-5 // capillary number for the displacement, positive="oil injection"
timestepMax = 20000 // maximum timtestep
alpha = 0.01 // controls interfacial tension
protocol = "fractional flow"
capillary_number = 1e-5 // capillary number for the displacement, positive="oil injection"
timestepMax = 500000 // maximum timtestep
alpha = 0.005 // controls interfacial tension
rhoA = 1.0 // controls the density of fluid A
rhoB = 1.0 // controls the density of fluid B
tauA = 0.7 // controls the viscosity of fluid A
@ -42,7 +43,7 @@ For the case considered in ``example/DiscPack`` we specify the following informa
analysis_interval = 1000 // logging interval for timelog.csv
subphase_analysis_interval = 500000 // loggging interval for subphase.csv
N_threads = 4 // number of analysis threads (GPU version only)
visualization_interval = 10000 // interval to write visualization files
visualization_interval = 1000000 // interval to write visualization files
restart_interval = 10000000 // interval to write restart file
restart_file = "Restart" // base name of restart file
}
@ -55,6 +56,11 @@ For the case considered in ``example/DiscPack`` we specify the following informa
save_velocity = false // save velocity field within SILO database
}
FlowAdaptor {
min_steady_timesteps = 250000 // minimum number of timesteps per steady point
max_steady_timesteps = 300000 // maximum number of timesteps per steady point
fractional_flow_increment = 0.1 // parameter that controls rate of mass seeding
skip_timesteps = 10000 // number of timesteps to spend in flow adaptor
endpoint_threshold = 0.1 // endpoint exit criterion
}