LinearStaticCDR example 2
!!! note "" This example shows how to export mesh data from [[MSHFile_]] to [[HDF5File_]]
Modules and classes
- [[ParameterList_]]
- [[LinearStaticCDR_]]
- [[HDF5File_]]
- [[MSHFile_]]
Usage
PROGRAM main
USE easifemBase
USE easifemClasses
USE LinearStaticCDR_Class
IMPLICIT NONE
TYPE(HDF5File_) :: hdf5file
TYPE(MSHFile_) :: meshfile
CHARACTER(LEN=*), PARAMETER :: mshfilename = "./mesh.msh"
CHARACTER(LEN=*), PARAMETER :: hdf5filename = "./mesh.h5"
!!! notes "" Open [[MSHFile_]] mesh file.
CALL meshfile%Initiate(mshfilename, STATUS="OLD", ACTION="READ")
CALL meshfile%Open()
CALL meshfile%Read()
!!! note "" Open an [[HDF5File_]], then we will export meshfile data to it.
CALL hdf5file%Initiate(hdf5filename, "NEW")
CALL hdf5file%Open()
!!! notes "" Export the mesh data from [[MSHFile_]] to [[HDF5File_]].
CALL meshfile%Export(hdf5file, "")
!!! settings "Cleanup"
CALL hdf5file%Deallocate()
CALL meshfile%Deallocate()
END PROGRAM main