|
Neko 1.99.3
A portable framework for high-order spectral element flow simulations
|
Initial flow condition.
Data Types | |
| interface | set_flow_ic |
Functions/Subroutines | |
| subroutine | set_flow_ic_int (u, v, w, p, coef, gs, type, params) |
| Set initial flow condition (builtin) | |
| subroutine | set_flow_ic_usr (u, v, w, p, coef, gs, user_proc, scheme_name) |
| Set intial flow condition (user defined) | |
| subroutine | set_compressible_flow_ic_usr (rho, u, v, w, p, coef, gs, user_proc, scheme_name) |
| Set intial flow condition (user defined) for compressible flows. | |
| subroutine | set_flow_ic_common (u, v, w, p, coef, gs) |
| subroutine | set_flow_ic_uniform (u, v, w, uinf) |
| Uniform initial condition. | |
| subroutine | set_flow_ic_blasius (u, v, w, delta, uinf, type) |
| Set a Blasius profile as initial condition. | |
| subroutine | set_flow_ic_point_zone (u, v, w, base_value, zone_name, zone_value) |
| Set the initial condition of the flow based on a point zone. | |
| subroutine, public | set_flow_ic_fld (u, v, w, p, file_name, interpolate, mesh_file_name, global_interp_subdict) |
Set the initial condition of the flow based on a field. @detail The fields are read from an fld file. If enabled, interpolation is also possible. In that case, the mesh coordinates can be read from another field in the fld field series. | |
|
private |
Definition at line 185 of file flow_ic.f90.
|
private |
Definition at line 301 of file flow_ic.f90.

| subroutine, public flow_ic::set_flow_ic_fld | ( | type(field_t), intent(inout), target | u, |
| type(field_t), intent(inout), target | v, | ||
| type(field_t), intent(inout), target | w, | ||
| type(field_t), intent(inout), target | p, | ||
| character(len=*), intent(inout) | file_name, | ||
| logical, intent(in) | interpolate, | ||
| character(len=*), intent(inout) | mesh_file_name, | ||
| type(json_file), intent(inout) | global_interp_subdict | ||
| ) |
| u | The x-component of the velocity field. |
| v | The y-component of the velocity field. |
| w | The z-component of the velocity field. |
| p | The pressure field. |
| file_name | The name of the "fld" file series. |
| interpolate | Flag to indicate wether or not to interpolate the values onto the current mesh. |
| file_name | If interpolation is enabled the name of the "fld" file containing the mesh coordinates (if they are not in file_name). |
| global_interp_subdict | If interpolation is enabled, subdict containing the interpolation parameters to use. |
Definition at line 418 of file flow_ic.f90.

|
private |
Definition at line 77 of file flow_ic.f90.
|
private |
The initial condition is set to the base value and then the zone is filled with the zone value.
| u | The x-component of the velocity field. |
| v | The y-component of the velocity field. |
| w | The z-component of the velocity field. |
| base_value | The base value of the initial condition. |
| zone_name | The name of the point zone. |
| zone_value | The value of the point zone. |
Definition at line 371 of file flow_ic.f90.


|
private |
Definition at line 156 of file flow_ic.f90.