27 #include <AMReX_Utility.H>
28 #include <AMReX_IntVect.H>
29 #include <AMReX_ParmParse.H>
30 #include <AMReX_ParallelDescriptor.H>
31 #include <AMReX_VisMF.H>
32 #include <AMReX_VectorIO.H>
33 #include <AMReX_NFiles.H>
71 namespace fs = boost::filesystem;
75 boost::filesystem::path path = dir.parent_path() / dataDir /
"amr" /
"yt";
76 dir_m = amrex::Concatenate((path /
"plt").
string(), step, 10);
82 fs::create_directories( path );
83 }
catch(
const fs::filesystem_error& ex) {
109 amrex::VisMF::SetNOutFiles(64);
114 if (!amrex::UtilCreateDirectory(
dir_m, 0755))
115 amrex::CreateDirectoryFailed(
dir_m);
121 std::string HeaderFileName =
dir_m +
"/Header";
123 amrex::VisMF::IO_Buffer io_buffer(amrex::VisMF::IO_Buffer_Size);
125 std::ofstream HeaderFile;
127 HeaderFile.rdbuf()->pubsetbuf(io_buffer.dataPtr(), io_buffer.size());
129 int nData = rho[0]->nComp()
131 + efield[0][0]->nComp()
132 + efield[0][1]->nComp()
133 + efield[0][2]->nComp();
140 HeaderFile.open(HeaderFileName.c_str(), std::ios::out|std::ios::trunc|std::ios::binary);
141 if (!HeaderFile.good())
142 amrex::FileOpenFailed(HeaderFileName);
143 HeaderFile <<
"HyperCLaw-V1.1\n";
145 HeaderFile << nData <<
'\n';
148 for (
int ivar = 1; ivar <= rho[0]->nComp(); ivar++)
149 HeaderFile <<
"rho\n";
151 for (
int ivar = 1; ivar <= phi[0]->nComp(); ivar++)
152 HeaderFile <<
"phi\n";
154 HeaderFile <<
"Ex\nEy\nEz\n";
157 HeaderFile << AMREX_SPACEDIM <<
'\n';
160 HeaderFile << time <<
'\n';
161 HeaderFile << nLevel - 1 <<
'\n';
164 for (
int i = 0; i < AMREX_SPACEDIM; i++)
165 HeaderFile << geom[0].ProbLo(i) / scale <<
' ';
167 for (
int i = 0; i < AMREX_SPACEDIM; i++)
168 HeaderFile << geom[0].ProbHi(i) / scale <<
' ';
172 for (
int i = 0; i < refRatio.size(); ++i)
173 HeaderFile << refRatio[i] <<
' ';
177 for (
int i = 0; i < nLevel; ++i)
178 HeaderFile << geom[i].Domain() <<
' ';
182 for (
int i = 0; i < nLevel; ++i)
183 HeaderFile << 0 <<
' ';
187 for (
int i = 0; i < nLevel; ++i) {
188 for (
int k = 0; k < AMREX_SPACEDIM; k++)
189 HeaderFile << geom[i].CellSize()[k] / scale <<
' ';
194 HeaderFile << geom[0].Coord() <<
'\n';
198 for (
int lev = 0; lev < nLevel; ++lev) {
202 static const std::string BaseName =
"/Cell";
204 sprintf(buf,
"Level_%d", lev);
205 std::string sLevel = buf;
210 std::string FullPath =
dir_m;
211 if (!FullPath.empty() && FullPath[FullPath.length()-1] !=
'/')
218 if (!amrex::UtilCreateDirectory(FullPath, 0755))
219 amrex::CreateDirectoryFailed(FullPath);
227 HeaderFile << lev <<
' ' << rho[lev]->boxArray().size() <<
' ' << 0 <<
'\n';
228 HeaderFile << 0 <<
'\n';
230 for (
int i = 0; i < rho[lev]->boxArray().size(); ++i)
232 amrex::Real dx[3] = {
233 geom[lev].CellSize(0),
234 geom[lev].CellSize(1),
235 geom[lev].CellSize(2)
240 amrex::Real lo[3] = {
252 for (
int n = 0;
n < AMREX_SPACEDIM;
n++)
253 HeaderFile << loc.lo(
n) <<
' ' << loc.hi(
n) <<
'\n';
256 std::string PathNameInHeader = sLevel;
257 PathNameInHeader += BaseName;
258 HeaderFile << PathNameInHeader <<
'\n';
265 rho[lev]->DistributionMap(),
278 amr::AmrField_t::Copy(data, *rho[lev], 0, 0, 1, 0);
279 amr::AmrField_t::Copy(data, *phi[lev], 0, 1, 1, 0);
280 amr::AmrField_t::Copy(data, *efield[lev][0], 0, 2, 1, 0);
281 amr::AmrField_t::Copy(data, *efield[lev][1], 0, 3, 1, 0);
282 amr::AmrField_t::Copy(data, *efield[lev][2], 0, 4, 1, 0);
287 std::string TheFullPath = FullPath;
288 TheFullPath += BaseName;
290 amrex::VisMF::Write(data, TheFullPath, amrex::VisMF::NFiles,
true);
321 const int NProcs = amrex::ParallelDescriptor::NProcs();
322 const int IOProcNumber = amrex::ParallelDescriptor::IOProcessorNumber();
324 bool doUnlink =
true;
329 std::string pdir =
dir_m;
331 if ( ! pdir.empty() && pdir[pdir.size()-1] !=
'/') {
340 if ( ! amrex::UtilCreateDirectory(pdir, 0755)) {
341 amrex::CreateDirectoryFailed(pdir);
353 std::ofstream HdrFile;
360 int nLevel = (&amrpbase_p->
getAmrLayout())->maxLevel() + 1;
362 std::unique_ptr<size_t[]> partPerLevel(
new size_t[nLevel] );
363 std::unique_ptr<size_t[]> globalPartPerLevel(
new size_t[nLevel] );
365 for (
size_t i = 0; i < LocalNumPerLevel.size(); ++i)
366 partPerLevel[i] = LocalNumPerLevel[i];
369 *globalPartPerLevel.get(),
370 nLevel, std::plus<size_t>());
376 std::string HdrFileName = pdir;
378 if ( ! HdrFileName.empty() && HdrFileName[HdrFileName.size()-1] !=
'/') {
383 HdrFileName +=
"Header";
385 HdrFile.open(HdrFileName.c_str(), std::ios::out|std::ios::trunc);
387 if ( ! HdrFile.good()) {
388 amrex::FileOpenFailed(HdrFileName);
397 HdrFile <<
"Version_Two_Dot_Zero_double" <<
'\n';
401 HdrFile << AMREX_SPACEDIM <<
'\n';
405 for (std::size_t j = 0; j <
realData_m.size(); ++j)
410 for (std::size_t j = 0; j <
intData_m.size(); ++j)
414 HdrFile <<
true <<
'\n';
419 HdrFile << nParticles <<
'\n';
424 HdrFile << 0 <<
'\n';
428 HdrFile << finest_level <<
'\n';
432 for (
int lev = 0; lev <= finest_level; ++lev) {
433 HdrFile << layout_p->ParticleBoxArray(lev).size() <<
'\n';
445 for (
int lev = 0; lev <= finest_level; ++lev) {
446 bool gotsome = (globalPartPerLevel[lev] > 0);
450 std::string LevelDir = pdir;
453 if ( ! LevelDir.empty() && LevelDir[LevelDir.size()-1] !=
'/') {
457 LevelDir = amrex::Concatenate(LevelDir +
"Level_", lev, 1);
460 if ( ! amrex::UtilCreateDirectory(LevelDir, 0755)) {
461 amrex::CreateDirectoryFailed(LevelDir);
472 std::string HeaderFileName = LevelDir;
473 HeaderFileName +=
"/Particle_H";
474 std::ofstream ParticleHeader(HeaderFileName);
476 layout_p->ParticleBoxArray(lev).writeOn(ParticleHeader);
477 ParticleHeader <<
'\n';
479 ParticleHeader.flush();
480 ParticleHeader.close();
484 info.SetAlloc(
false);
486 layout_p->ParticleDistributionMap(lev),
492 amrex::Vector<int> which(state.size(),0);
493 amrex::Vector<int > count(state.size(),0);
494 amrex::Vector<long>
where(state.size(),0);
496 std::string filePrefix(LevelDir);
498 filePrefix +=
"DATA_";
501 bool groupSets(
false), setBuf(
true);
502 for(amrex::NFilesIter nfi(nOutFiles, filePrefix, groupSets, setBuf); nfi.ReadyToWrite(); ++nfi) {
503 std::ofstream& myStream = (std::ofstream&) nfi.Stream();
512 amrex::ParallelDescriptor::ReduceIntSum (which.dataPtr(), which.size(), IOProcNumber);
513 amrex::ParallelDescriptor::ReduceIntSum (count.dataPtr(), count.size(), IOProcNumber);
514 amrex::ParallelDescriptor::ReduceLongSum(
where.dataPtr(),
where.size(), IOProcNumber);
518 for (
int j = 0; j < state.size(); j++) {
524 HdrFile << which[j] <<
' ' << count[j] <<
' ' <<
where[j] <<
'\n';
527 if (gotsome && doUnlink) {
531 amrex::Vector<long> cnt(nOutFiles,0);
533 for (
int i = 0, N=count.size(); i < N; i++) {
534 cnt[which[i]] += count[i];
537 for (
int i = 0, N=cnt.size(); i < N; i++) {
539 std::string FullFileName = amrex::NFilesIter::FileName(i, filePrefix);
540 amrex::UnlinkFile(FullFileName.c_str());
550 if ( ! HdrFile.good()) {
552 "Problem writing HdrFile");
561 amrex::Vector<int>& which,
562 amrex::Vector<int>& count,
563 amrex::Vector<long>&
where,
565 const double gamma)
const
590 size_t lBegin = LocalNumPerLevel.
begin(level);
591 size_t lEnd = LocalNumPerLevel.end(level);
593 for (
size_t ip = lBegin; ip < lEnd; ++ip) {
594 const int grid = amrpbase_p->
Grid[ip];
600 info.SetAlloc(
false);
602 layout_p->ParticleDistributionMap(level),
605 for (amrex::MFIter mfi(state); mfi.isValid(); ++mfi) {
606 const int grid = mfi.index();
609 where[grid] = amrex::VisMF::FileOffset(ofs);
611 if (count[grid] == 0) {
617 const int iChunkSize = 2 +
intData_m.size();
618 amrex::Vector<int> istuff(count[grid]*iChunkSize);
619 int* iptr = istuff.dataPtr();
622 for (
size_t ip = lBegin; ip < lEnd; ++ip) {
623 const int pGrid = amrpbase_p->
Grid[ip];
625 if ( grid == pGrid ) {
627 iptr[0] = bunch_p->
ID[ip];
629 iptr[2] = bunch_p->
Bin[ip];
634 amrex::writeIntData(istuff.dataPtr(), istuff.size(), ofs);
637 const int rChunkSize = AMREX_SPACEDIM +
realData_m.size();
638 amrex::Vector<double> rstuff(count[grid]*rChunkSize);
639 double* rptr = rstuff.dataPtr();
643 for (
size_t ip = lBegin; ip < lEnd; ++ip) {
644 const int pGrid = amrpbase_p->
Grid[ip];
646 if ( grid == pGrid ) {
651 for (
int j = 0; j < AMREX_SPACEDIM; ++j)
652 rptr[idx++] = bunch_p->
R[ip](j);
661 for (
int j = 0; j < AMREX_SPACEDIM; ++j)
662 rptr[idx++] = bunch_p->
P[ip](j);
665 rptr[idx++] = bunch_p->
Q[ip];
668 rptr[idx++] = bunch_p->
M[ip];
671 rptr[idx++] = bunch_p->
dt[ip];
677 for (
int j = 0; j < AMREX_SPACEDIM; ++j)
678 rptr[idx++] = bunch_p->
Ef[ip](j);
681 for (
int j = 0; j < AMREX_SPACEDIM; ++j)
682 rptr[idx++] = bunch_p->
Bf[ip](j);
687 amrex::writeDoubleData(rstuff.dataPtr(), rstuff.size(), ofs);
T::PETE_Expr_t::PETE_Return_t max(const PETE_Expr< T > &expr, NDIndex< D > &loc)
T::PETE_Expr_t::PETE_Return_t min(const PETE_Expr< T > &expr, NDIndex< D > &loc)
void allreduce(const T *input, T *output, int count, Op op)
PETE_TTTree< OpWhere, typename Cond_t::PETE_Expr_t, typename True_t::PETE_Expr_t, PETE_Scalar< Vektor< T, Dim > > > where(const PETE_Expr< Cond_t > &c, const PETE_Expr< True_t > &t, const Vektor< T, Dim > &f)
amrex::Vector< AmrVectorField_t > AmrVectorFieldContainer_t
amrex::RealBox AmrDomain_t
amrex::Vector< AmrGeometry_t > AmrGeomContainer_t
amrex::MultiFab AmrField_t
amrex::Vector< std::unique_ptr< AmrField_t > > AmrScalarFieldContainer_t
amrex::Vector< int > AmrIntArray_t
ParticleLayout< T, Dim > & getLayout()
ParticleAttrib< Vector_t > Ef
ParticleAttrib< int > Bin
ParticleAttrib< double > M
size_t getTotalNum() const
ParticleAttrib< Vector_t > P
ParticleAttrib< double > Q
ParticleAttrib< double > dt
ParticleAttrib< Vector_t > Bf
std::string getInputBasename()
get input file name without extension
static OpalData * getInstance()
std::string getAuxiliaryOutputDirectory() const
get the name of the the additional data directory
std::vector< std::string > intData_m
integer bunch data
std::vector< std::string > realData_m
real bunch data
AmrYtWriter(int step, int bin=0)
void writeFields(const amr::AmrScalarFieldContainer_t &rho, const amr::AmrScalarFieldContainer_t &phi, const amr::AmrVectorFieldContainer_t &efield, const amr::AmrIntArray_t &refRatio, const amr::AmrGeomContainer_t &geom, const int &nLevel, const double &time, const double &scale)
std::string dir_m
directory where to write files
void writeParticles_m(int level, std::ofstream &ofs, int fnum, amrex::Vector< int > &which, amrex::Vector< int > &count, amrex::Vector< long > &where, const AmrPartBunch *bunch_p, const double gamma) const
void writeBunch(const AmrPartBunch *bunch_p, const double &time, const double &gamma)
pbase_t * getAmrParticleBase()
The base class for all OPAL exceptions.
const ParticleLevelCounter_t & getLocalNumPerLevel() const
static Communicate * Comm