Loading web-font TeX/Math/Italic
Neko 0.9.99
A portable framework for high-order spectral element flow simulations
All Classes Namespaces Files Functions Variables Typedefs Enumerator Macros Pages
field Module Reference

Defines a field.

Data Types

type  field_ptr_t
 field_ptr_t, To easily obtain a pointer to a field More...
 
type  field_t
 

Functions/Subroutines

subroutine field_init_internal_dof (this, msh, space, fld_name)
 Initialize a field this on the mesh msh using an internal dofmap.
 
subroutine field_init_external_dof (this, dof, fld_name)
 Initialize a field this on the mesh msh using an internal dofmap.
 
subroutine field_init_common (this, fld_name)
 Initialize a field this.
 
subroutine field_free (this)
 Deallocate a field f.
 
subroutine field_assign_field (this, g)
 Assignment this = G .
 
subroutine field_assign_scalar (this, a)
 Assignment this = a .
 
subroutine field_add_field (this, g)
 Add this(u_1, u_2, ... , u_n) = this(u_1, u_2, ... , u_n) + G(u_1, u_2, ... , u_n) .
 
subroutine field_add_scalar (this, a)
 Add this(u_1, u_2, ... , u_n) = this(u_1, u_2, ... , u_n) + a .
 
pure integer function field_size (this)
 Return the size of the field based on the underlying dofmap.
 

Function/Subroutine Documentation

◆ field_add_field()

subroutine field::field_add_field ( class(field_t), intent(inout this,
type(field_t), intent(in g 
)
private
Note
Component wise

Definition at line 248 of file field.f90.

◆ field_add_scalar()

subroutine field::field_add_scalar ( class(field_t), intent(inout this,
real(kind=rp), intent(in a 
)
private

Definition at line 263 of file field.f90.

◆ field_assign_field()

subroutine field::field_assign_field ( class(field_t), intent(inout this,
type(field_t), intent(in g 
)
private
Note
this will be initialized if it has a different size than G or it's not allocated

Definition at line 186 of file field.f90.

◆ field_assign_scalar()

subroutine field::field_assign_scalar ( class(field_t), intent(inout this,
real(kind=rp), intent(in a 
)
private

Definition at line 224 of file field.f90.

◆ field_free()

subroutine field::field_free ( class(field_t), intent(inout this)
private

Definition at line 161 of file field.f90.

◆ field_init_common()

subroutine field::field_init_common ( class(field_t), intent(inout this,
character(len=*), optional  fld_name 
)
private
Parameters
[in,out]thisField to be initialized
fld_nameName of the field

Definition at line 132 of file field.f90.

◆ field_init_external_dof()

subroutine field::field_init_external_dof ( class(field_t), intent(inout this,
type(dofmap_t), intent(in), target  dof,
character(len=*), optional  fld_name 
)
private
Parameters
[in,out]thisField to be initialized
[in]dofExternal dofmap for the field
fld_nameName of the field

Definition at line 112 of file field.f90.

◆ field_init_internal_dof()

subroutine field::field_init_internal_dof ( class(field_t), intent(inout this,
type(mesh_t), intent(in), target  msh,
type(space_t), intent(in), target  space,
character(len=*), optional  fld_name 
)
Parameters
[in,out]thisField to be initialized
[in]mshunderlying mesh of the field
[in]spaceFunction space for the field
fld_nameName of the field

Definition at line 88 of file field.f90.

◆ field_size()

pure integer function field::field_size ( class(field_t), intent(in this)
private

Definition at line 276 of file field.f90.