ITM Grid Service Library: Fortran 90
|
Public Member Functions | |
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. |
Definition at line 8 of file itm_grid_data.f90.
subroutine itm_grid_data::gridWriteData::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::gridWriteData::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::gridWriteData::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.