| ITM Grid Service Library: Fortran 90 | 
| Data Types | |
| interface | gridWriteData | 
| Functions/Subroutines | |
| subroutine | gridWriteDataScalar (cpoField, subgrid, data) | 
| Write a scalar data field given as a scalar data representation to a generic CPO data field. | |
| subroutine | gridWriteDataVector (cpoField, subgrid, data) | 
| Write a scalar data field given in a vector data representation to a generic CPO data field. | |
| subroutine | gridWriteDataMatrix (cpoField, subgrid, data) | 
| Write a scalar data field given in a matrix data representation to a generic CPO data field. | |
| subroutine itm_grid_data::gridWriteDataMatrix | ( | type(type_complexgrid_scalar),intent(inout) | cpofield, | 
| integer,intent(in) | subgrid, | ||
| real(ITM_R8),dimension(:,:,:),intent(in) | data | ||
| ) | 
Write a scalar data field given in a matrix data representation to a generic CPO data field.
Note: the routine will make sure the required storage is allocated, and will deallocate and re-allocate fields as necessary.
Definition at line 91 of file itm_grid_data.f90.
| subroutine itm_grid_data::gridWriteDataScalar | ( | type(type_complexgrid_scalar),intent(inout) | cpofield, | 
| integer,intent(in) | subgrid, | ||
| real(ITM_R8),dimension(:),intent(in) | data | ||
| ) | 
Write a scalar data field given as a scalar data representation to a generic CPO data field.
Note: the routine will make sure the required storage is allocated, and will deallocate and re-allocate fields as necessary.
Definition at line 19 of file itm_grid_data.f90.
| subroutine itm_grid_data::gridWriteDataVector | ( | type(type_complexgrid_scalar),intent(inout) | cpofield, | 
| integer,intent(in) | subgrid, | ||
| real(ITM_R8),dimension(:,:),intent(in) | data | ||
| ) | 
Write a scalar data field given in a vector data representation to a generic CPO data field.
Note: the routine will make sure the required storage is allocated, and will deallocate and re-allocate fields as necessary.
Definition at line 55 of file itm_grid_data.f90.