Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90721291
io_hdf5_meshes.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Nov 4, 04:19
Size
782 B
Mime Type
text/x-c
Expires
Wed, Nov 6, 04:19 (1 d, 6 h)
Engine
blob
Format
Raw Data
Handle
22124913
Attached To
rSPECMICP SpecMiCP / ReactMiCP
io_hdf5_meshes.cpp
View Options
#include "catch.hpp"
#include "dfpm/meshes/generic_mesh1d.hpp"
#include "dfpm/io/meshes.hpp"
#include <H5Cpp.h>
#include "dfpm/io/hdf5_mesh.hpp"
#include "specmicp_common/io/hdf5/file.hpp"
using namespace specmicp;
using namespace specmicp::mesh;
using namespace specmicp::io;
TEST_CASE("HDF5 output", "[Mesh],[1D],[io],[hdf5]") {
SECTION("test ramp mesh 1d") {
Ramp1DMeshGeometry geometry;
geometry.dx_min = 2;
geometry.dx_max = 100;
geometry.length_ramp = 1000;
geometry.length_plateau = 1000;
geometry.section = 1;
Mesh1DPtr the_mesh = ramp_mesh1d(geometry);
auto file = hdf5::File::open("test_mesh.hf5", hdf5::OpenMode::CreateTruncate);
save_mesh_coordinates(file, "mesh", the_mesh);
}
}
Event Timeline
Log In to Comment