Go to the source code of this file.
Functions | |
template<class _InIt> | |
void | binary_read (_InIt _First, _InIt _Last, const string _Filename, const int _Seek) |
template<class _InIt> | |
void | binary_write (_InIt _First, _InIt _Last, const string _Filename) |
template<class T> | |
void | read_header (const string &_root, vector< T > &_hdr) |
template<class T> | |
void | read_partition (const string &_root, const vector< T > &_hdr, vector< T > &_par) |
template<class T> | |
void | read_connection (const string &_root, const vector< T > &_hdr, const vector< T > &_par, vector< T > &_con) |
template<class T, class S> | |
void | read_element (const string &_root, const vector< T > &_hdr, const vector< T > &_par, vector< S > &_ele) |
|
The binary_read procedure reads binary data from a file into a memory block.
|
|
The binary_write procedure writes binary data to a file from a memory block.
|
|
The read_connection procedure reads the mesh connectivity data of the finite element simulation.
|
|
The read_element procedure reads the element matrix data of the finite element simulation.
|
|
The read_header procedure reads the header information of the finite element simulation.
|
|
The read_partition procedure reads the partition data of the finite element simulation.
|