|
| subroutine | geometry_2d::init_grid |
| | Finite volume grid initialization. More...
|
| |
| subroutine | geometry_2d::deallocate_grid |
| |
| subroutine | geometry_2d::init_source |
| |
| subroutine | geometry_2d::interp_1d_scalar (x1, f1, x2, f2) |
| | Scalar interpolation. More...
|
| |
| subroutine | geometry_2d::interp_2d_scalar (x1, y1, f1, x2, y2, f2) |
| | Scalar interpolation (2D) More...
|
| |
| subroutine | geometry_2d::interp_2d_scalarb (x1, y1, f1, x2, y2, f2) |
| | Scalar interpolation (2D) More...
|
| |
| subroutine | geometry_2d::interp_2d_slope (x1, y1, f1, x2, y2, f_x, f_y) |
| | Scalar interpolation (2D) More...
|
| |
| subroutine | geometry_2d::regrid_scalar (xin, yin, fin, xl, xr, yl, yr, fout) |
| | Scalar regrid (2D) More...
|
| |
| subroutine | geometry_2d::limit (v, z, limiter, slope_lim) |
| | Slope limiter. More...
|
| |
| real(wp) function | geometry_2d::minmod (a, b) |
| |
| real(wp) function | geometry_2d::maxmod (a, b) |
| |
| subroutine | geometry_2d::compute_cell_fract |
| |
|
| real(wp), dimension(:), allocatable | geometry_2d::x_comp |
| | Location of the centers (x) of the control volume of the domain. More...
|
| |
| real(wp), dimension(:), allocatable | geometry_2d::x_stag |
| | Location of the boundaries (x) of the control volumes of the domain. More...
|
| |
| real(wp), dimension(:), allocatable | geometry_2d::y_comp |
| | Location of the centers (y) of the control volume of the domain. More...
|
| |
| real(wp), dimension(:), allocatable | geometry_2d::y_stag |
| | Location of the boundaries (x) of the control volumes of the domain. More...
|
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::grid_output |
| | Solution in ascii grid format (ESRI) More...
|
| |
| integer, dimension(:,:), allocatable | geometry_2d::source_cell |
| |
| logical, dimension(:,:), allocatable | geometry_2d::sourcee |
| |
| logical, dimension(:,:), allocatable | geometry_2d::sourcew |
| |
| logical, dimension(:,:), allocatable | geometry_2d::sources |
| |
| logical, dimension(:,:), allocatable | geometry_2d::sourcen |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::dist_sourcee |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::dist_sourcew |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::dist_sources |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::dist_sourcen |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sourcee_vect_x |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sourcee_vect_y |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sourcew_vect_x |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sourcew_vect_y |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sources_vect_x |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sources_vect_y |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sourcen_vect_x |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::sourcen_vect_y |
| |
| real(wp) | geometry_2d::pi_g |
| |
| integer | geometry_2d::n_topography_profile_x |
| |
| integer | geometry_2d::n_topography_profile_y |
| |
| real(wp) | geometry_2d::dx |
| | Control volumes size. More...
|
| |
| real(wp) | geometry_2d::x0 |
| | Left of the physical domain. More...
|
| |
| real(wp) | geometry_2d::xn |
| | Right of the physical domain. More...
|
| |
| real(wp) | geometry_2d::dy |
| | Control volumes size. More...
|
| |
| real(wp) | geometry_2d::y0 |
| | Bottom of the physical domain. More...
|
| |
| real(wp) | geometry_2d::yn |
| | Top of the physical domain. More...
|
| |
| real(wp) | geometry_2d::dx2 |
| | Half x Control volumes size. More...
|
| |
| real(wp) | geometry_2d::dy2 |
| | Half y Control volumes size. More...
|
| |
| integer | geometry_2d::comp_cells_x |
| | Number of control volumes x in the comp. domain. More...
|
| |
| integer | geometry_2d::comp_interfaces_x |
| | Number of interfaces (comp_cells_x+1) More...
|
| |
| integer | geometry_2d::comp_cells_y |
| | Number of control volumes y in the comp. domain. More...
|
| |
| integer | geometry_2d::comp_interfaces_y |
| | Number of interfaces (comp_cells_y+1) More...
|
| |
| real(wp) | geometry_2d::cell_size |
| |
| integer | geometry_2d::comp_cells_xy |
| |
| integer | geometry_2d::j_source |
| |
| integer | geometry_2d::k_source |
| |
| integer | geometry_2d::j_source_w |
| |
| integer | geometry_2d::k_source_s |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::cell_fract |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::dx_rel |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::dy_rel |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::upwind_dist |
| |
| real(wp), dimension(:,:), allocatable | geometry_2d::crosswind_dist |
| |