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

FElib / model framework / mesh manager (base) More...

Data Types

type  modelmeshbase
 
type  modelmeshbase1d
 
type  modelmeshbase2d
 
type  modelmeshbase3d
 
interface  modelmeshbase_get_modelmesh
 

Functions/Subroutines

subroutine modelmeshbase_init (this, ndim)
 

Detailed Description

FElib / model framework / mesh manager (base)

Description
A module for managing mesh used in models
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ modelmeshbase_init()

subroutine scale_model_meshbase_manager::modelmeshbase_init ( class(modelmeshbase), intent(inout) this,
integer, intent(in) ndim )

Definition at line 107 of file scale_model_meshbase_manager.F90.

108 implicit none
109 class(ModelMeshBase), intent(inout) :: this
110 integer, intent(in) :: nDim
111
112 integer :: d
113 !--------------------------------------------
114
115 this%communicator_num = 0
116 allocate( this%SOptrMat(ndim), this%DOptrMat(ndim) )
117
118 return

References scale_element_operation_tensorprod3d::elementoperationtensorprod3d_create().