Declaration of a type (and associated routines) for double precision variable defined on edges. More...
Functions/Subroutines | |
| pure subroutine | assign_edge_field_to_edge_field (edge_field_a, edge_field_b) |
| Copy the values of a edge field in an other: b <- a. | |
| pure subroutine | assign_scalar_to_edge_field (a, edge_field_b) |
| Copy the values of a scalar to a edge field: b <- a. | |
| pure subroutine | initialize_edge_field_double (field, kkk, lll, mmm, val_xy, val_xz, val_yz) |
| Initialize a double edge field. | |
| pure subroutine | initialize_edge_field_integer (field, kkk, lll, mmm, val_xy, val_xz, val_yz) |
| Initialize an integer edge field. | |
| pure subroutine | initialize_edge_field_logical (field, kkk, lll, mmm, val_xy, val_xz, val_yz) |
| Initialize a logical edge field. | |
| subroutine | unalloc_edge_field_double (vector) |
| Unalloc a double edge field. | |
| subroutine | unalloc_edge_field_integer (vector) |
| Unalloc an integer edge field. | |
| subroutine | unalloc_edge_field_logical (vector) |
| Unalloc a logical edge field. | |
Declaration of a type (and associated routines) for double precision variable defined on edges.
Contains initialization and unallocation routines for integer, double precision and logical edge_field type
Initialize to 0 a edge field:
To initialize an adge field to another value:
Release the memory:
|
private |
Copy the values of a edge field in an other: b <- a.
| [in] | edge_field_a | the input edge_field |
| [in,out] | edge_field_b | the output edge_field |
|
private |
Copy the values of a scalar to a edge field: b <- a.
| [in] | a | the input scalar |
| [in,out] | edge_field_b | the output edge_field |