FE-Project
Loading...
Searching...
No Matches
Data Types | Functions/Subroutines
scale_mesh_topography Module Reference

module FElib / Mesh / Topography More...

Data Types

type  meshtopography
 

Functions/Subroutines

subroutine meshtopography_init (this, varname, mesh)
 

Detailed Description

module FElib / Mesh / Topography

Description
A module to manage vertical coordinate with topography
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ meshtopography_init()

subroutine scale_mesh_topography::meshtopography_init ( class(meshtopography), intent(inout) this,
character(len=*), intent(in) varname,
class(meshbase2d), intent(in), target mesh )

Definition at line 62 of file scale_mesh_topography.F90.

63 implicit none
64
65 class(MeshTopography), intent(inout) :: this
66 character(len=*), intent(in) :: varname
67 class(MeshBase2D), intent(in), target :: mesh
68
69 integer :: n
70 !-----------------------------------------------------------------------------
71
72 call this%topo%Init( varname, "m", mesh )
73
74 do n=1, mesh%LOCAL_MESH_NUM
75!$omp parallel workshare
76 this%topo%local(n)%val(:,:) = 0.0_rp
77!$omp end parallel workshare
78 end do
79
80 return

References scale_meshutil_vcoord::meshutil_vcoord_getmetric().