aboutsummaryrefslogtreecommitdiff
path: root/Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp')
-rw-r--r--Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp185
1 files changed, 185 insertions, 0 deletions
diff --git a/Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp b/Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp
index 6b02760c4..bf9f8e877 100644
--- a/Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp
+++ b/Source/Diagnostics/BTD_Plotfile_Header_Impl.cpp
@@ -1,3 +1,9 @@
+/* Copyright 2021 Revathi Jambunathan
+ *
+ * This file is part of WarpX.
+ *
+ * License: BSD-3-Clause-LBNL
+ */
#include "BTD_Plotfile_Header_Impl.H"
#include "WarpX.H"
@@ -341,3 +347,182 @@ BTDMultiFabHeaderImpl::CopyVec(amrex::Vector<amrex::Real>& dst,
dst[i] = src[i];
}
}
+
+
+BTDSpeciesHeaderImpl::BTDSpeciesHeaderImpl (std::string const & Headerfile_path, std::string const& species_name)
+ : m_Header_path(Headerfile_path), m_species_name(species_name)
+{
+
+}
+
+void
+BTDSpeciesHeaderImpl::ReadHeader ()
+{
+ amrex::Vector<char> HeaderCharPtr;
+ amrex::Long fileLength(0), fileLengthPadded(0);
+ std::ifstream iss;
+
+ iss.open(m_Header_path.c_str(), std::ios::in);
+ iss.seekg(0, std::ios::end);
+ fileLength = static_cast<std::streamoff>(iss.tellg());
+ iss.seekg(0, std::ios::beg);
+
+ fileLengthPadded = fileLength + 1;
+ HeaderCharPtr.resize(fileLengthPadded);
+ iss.read(HeaderCharPtr.dataPtr(), fileLength);
+ iss.close();
+ HeaderCharPtr[fileLength] = '\0';
+
+ std::istringstream is(HeaderCharPtr.dataPtr(), std::istringstream::in);
+ is.exceptions(std::ios_base::failbit | std::ios_base::badbit);
+
+ is >> m_file_version;
+ is >> m_spacedim;
+ is >> m_num_output_real;
+ m_real_comp_names.resize(m_num_output_real);
+ for (int i = 0; i < m_real_comp_names.size(); ++i) {
+ is >> m_real_comp_names[i];
+ }
+ is >> m_num_output_int;
+ for (int i = 0; i < m_int_comp_names.size(); ++i) {
+ is >> m_int_comp_names[i];
+ }
+ is >> m_is_checkpoint;
+ is >> m_total_particles;
+ is >> m_nextid;
+ is >> m_finestLevel;
+ m_particleBoxArray_size.resize(m_finestLevel+1);
+ m_which_data.resize(m_finestLevel+1);
+ m_particles_per_box.resize(m_finestLevel+1);
+ m_offset_per_box.resize(m_finestLevel+1);
+ for (int lev = 0; lev <= m_finestLevel; ++lev) {
+ is >> m_particleBoxArray_size[lev];
+ m_which_data[lev].resize(m_particleBoxArray_size[lev]);
+ m_particles_per_box[lev].resize(m_particleBoxArray_size[lev]);
+ m_offset_per_box[lev].resize(m_particleBoxArray_size[lev]);
+ for (int i = 0; i < m_particleBoxArray_size[lev]; ++i) {
+ is >> m_which_data[lev][i] >> m_particles_per_box[lev][i] >> m_offset_per_box[lev][i];
+ }
+ }
+
+}
+
+void
+BTDSpeciesHeaderImpl::WriteHeader ()
+{
+ if (amrex::FileExists(m_Header_path)) {
+ amrex::FileSystem::Remove(m_Header_path);
+ }
+ std::ofstream HeaderFile;
+ HeaderFile.open(m_Header_path.c_str(), std::ofstream::out |
+ std::ofstream::trunc |
+ std::ofstream::binary);
+ if ( !HeaderFile.good()) amrex::FileOpenFailed(m_Header_path);
+
+ HeaderFile.precision(17);
+
+ // File Version
+ HeaderFile << m_file_version << '\n';
+ // spacedim
+ HeaderFile << m_spacedim << '\n';
+ // number of real components output
+ HeaderFile << m_num_output_real << '\n';
+ for (int i = 0; i < m_num_output_real; ++i) {
+ HeaderFile << m_real_comp_names[i] << '\n';
+ }
+ HeaderFile << m_num_output_int << '\n';
+ for (int i = 0; i < m_num_output_int; ++i) {
+ HeaderFile << m_int_comp_names[i] << '\n';
+ }
+ HeaderFile << m_is_checkpoint << '\n';
+ HeaderFile << m_total_particles << '\n';
+ HeaderFile << m_nextid << '\n';
+ HeaderFile << m_finestLevel << '\n';
+ for (int lev = 0; lev <= m_finestLevel; ++lev) {
+ HeaderFile << m_particleBoxArray_size[lev] << '\n';
+ for (int i = 0; i < m_particleBoxArray_size[lev]; ++i) {
+ HeaderFile << m_which_data[lev][i] << ' ' << m_particles_per_box[lev][i] << ' ' << m_offset_per_box[lev][i] << '\n';
+ }
+ }
+}
+
+void
+BTDSpeciesHeaderImpl::set_DataIndex(const int lev, const int box_id, const int data_index)
+{
+ m_which_data[lev][box_id] = data_index;
+}
+
+void
+BTDSpeciesHeaderImpl::AppendParticleInfoForNewBox ( const int data_index,
+ const int particles_per_box,
+ const int offset)
+{
+ m_which_data[m_finestLevel].resize(m_particleBoxArray_size[m_finestLevel]);
+ m_particles_per_box[m_finestLevel].resize(m_particleBoxArray_size[m_finestLevel]);
+ m_offset_per_box[m_finestLevel].resize(m_particleBoxArray_size[m_finestLevel]);
+
+ const int last_boxId = m_particleBoxArray_size[m_finestLevel] - 1;
+ m_which_data[m_finestLevel][last_boxId] = data_index;
+ m_particles_per_box[m_finestLevel][last_boxId] = particles_per_box;
+ m_offset_per_box[m_finestLevel][last_boxId] = offset;
+
+}
+
+BTDParticleDataHeaderImpl::BTDParticleDataHeaderImpl (std::string const & Headerfile_path)
+ : m_Header_path(Headerfile_path)
+{
+
+}
+
+void
+BTDParticleDataHeaderImpl::ReadHeader ()
+{
+ // Read existing fab Header first
+ amrex::Vector<char> HeaderCharPtr;
+ amrex::Long fileLength(0), fileLengthPadded(0);
+ std::ifstream iss;
+
+ iss.open(m_Header_path.c_str(), std::ios::in);
+ iss.seekg(0, std::ios::end);
+ fileLength = static_cast<std::streamoff>(iss.tellg());
+ iss.seekg(0, std::ios::beg);
+
+ fileLengthPadded = fileLength + 1;
+ HeaderCharPtr.resize(fileLengthPadded);
+ iss.read(HeaderCharPtr.dataPtr(), fileLength);
+ iss.close();
+ HeaderCharPtr[fileLength] = '\0';
+
+ std::istringstream is(HeaderCharPtr.dataPtr(), std::istringstream::in);
+ is.exceptions(std::ios_base::failbit | std::ios_base::badbit);
+
+
+ int in_hash;
+ int bl_ignore_max = 100000;
+
+ is.ignore(bl_ignore_max,'(') >> m_ba_size >> in_hash;
+ m_ba.resize(m_ba_size);
+ for (int ibox = 0; ibox < m_ba.size(); ++ibox) {
+ amrex::Box bx;
+ is >> bx;
+ m_ba.set(ibox, bx);
+ }
+ is.ignore(bl_ignore_max, ')');
+
+}
+
+void
+BTDParticleDataHeaderImpl::WriteHeader ()
+{
+ if (amrex::FileExists(m_Header_path)) {
+ amrex::FileSystem::Remove(m_Header_path);
+ }
+ std::ofstream HeaderFile;
+ HeaderFile.open(m_Header_path.c_str(), std::ofstream::out |
+ std::ofstream::trunc |
+ std::ofstream::binary);
+ if ( !HeaderFile.good()) amrex::FileOpenFailed(m_Header_path);
+
+ HeaderFile.precision(17);
+ m_ba.writeOn(HeaderFile);
+}