|
Neko 1.99.7
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_expression (u, v, w, expr) |
| Set the initial condition from one mathematical expression per velocity component. | |
| 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 196 of file flow_ic.f90.
|
private |
Definition at line 361 of file flow_ic.f90.

|
private |
The expressions are evaluated in every GLL point of the mesh, with x, y and z bound to the coordinates of the point. Constants declared under case.constants in the case file can be referred to by name, see the expression module for the full syntax.
| u | The x-component of the velocity field. |
| v | The y-component of the velocity field. |
| w | The z-component of the velocity field. |
| expr | The expressions, one per velocity component. |
Definition at line 320 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 478 of file flow_ic.f90.

|
private |
Definition at line 78 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 431 of file flow_ic.f90.


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