Home
last modified time | relevance | path

Searched refs:times_and_names (Results 1 – 5 of 5) sorted by relevance

/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/examples/step-70/
H A Dstep-70.cc1748 static std::vector<std::pair<double, std::string>> times_and_names; in output_results() local
1749 times_and_names.push_back(std::make_pair(time, filename)); in output_results()
1751 DataOutBase::write_pvd_record(ofile, times_and_names); in output_results()
1777 times_and_names; in output_particles() local
1778 if (times_and_names.find(fprefix) != times_and_names.end()) in output_particles()
1779 times_and_names[fprefix].push_back(std::make_pair(time, filename)); in output_particles()
1781 times_and_names[fprefix] = {std::make_pair(time, filename)}; in output_particles()
1783 DataOutBase::write_pvd_record(ofile, times_and_names[fprefix]); in output_particles()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/examples/step-52/
H A Dstep-52.cc465 static std::vector<std::pair<double, std::string>> times_and_names; in output_results() local
471 times_and_names.clear(); in output_results()
475 times_and_names.emplace_back(time, filename); in output_results()
477 DataOutBase::write_pvd_record(pvd_output, times_and_names); in output_results()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/examples/step-18/
H A Dstep-18.cc1271 static std::vector<std::pair<double, std::string>> times_and_names; in output_results() local
1272 times_and_names.push_back( in output_results()
1275 DataOutBase::write_pvd_record(pvd_output, times_and_names); in output_results()
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/include/deal.II/base/
H A Ddata_out_base.h2134 const std::vector<std::pair<double, std::string>> &times_and_names);
/dports/math/deal.ii/dealii-803d21ff957e349b3799cd3ef2c840bc78734305/source/base/
H A Ddata_out_base.cc5756 const std::vector<std::pair<double, std::string>> &times_and_names) in write_pvd_record() argument
5774 for (const auto &time_and_name : times_and_names) in write_pvd_record()