1#include "../../include/materials/material_handler.h"
9 config.readFile(configFile);
10 const libconfig::Setting &materials =
config.lookup(
"materials");
14 numberOfElements = materials.getLength();
19 for (i = 0; i < numberOfElements; ++i) {
21 const libconfig::Setting &material = materials[i];
24 if (!(material.lookupValue(
"ID", ID))) {
25 Logger(
ERROR) <<
"Error. Found material without ID in config file...";
33 if (maxId != numberOfElements - 1) {
34 Logger(
ERROR) <<
"Material-IDs in config file have to be 0, 1, 2,...";
43 catch(
const libconfig::FileIOException &fileIOException) {
44 std::cerr <<
"I/O error while reading file." << std::endl;
48 catch(
const libconfig::ParseException &parseException) {
49 std::cerr <<
"Parse error at " << parseException.getFile() <<
":" << parseException.getLine()
50 <<
" - " << parseException.getError() << std::endl;
52 return numberOfElements;
76 const libconfig::Setting &materials = libConfigReader.
config.lookup(
"materials");
81 const libconfig::Setting &material = materials[i];
84 material.lookupValue(
"ID",
id);
87 material.lookupValue(
"interactions",
h_materials[
id].interactions);
91 const libconfig::Setting &subset_artVisc = material.lookup(
"artificial_viscosity");
92 subset_artVisc.lookupValue(
"alpha",
h_materials[
id].artificialViscosity.alpha);
93 subset_artVisc.lookupValue(
"beta",
h_materials[
id].artificialViscosity.beta);
96 const libconfig::Setting &subset_eos = material.lookup(
"eos");
97 subset_eos.lookupValue(
"type",
h_materials[
id].eos.type);
98 subset_eos.lookupValue(
"polytropic_K",
h_materials[
id].eos.polytropic_K);
99 subset_eos.lookupValue(
"polytropic_gamma",
h_materials[
id].eos.polytropic_gamma);
106 numMaterials(numMaterials) {
140 boost::mpi::environment env;
141 boost::mpi::communicator comm;
143 std::vector<boost::mpi::request> reqParticles;
144 std::vector<boost::mpi::status> statParticles;
147 if (comm.rank() == from) {
154 boost::mpi::wait_all(reqParticles.begin(), reqParticles.end());
163 boost::mpi::environment env;
164 boost::mpi::communicator comm;
Read material config files.
int loadConfigFromFile(const char *configFile)
Material * h_materials
host instance of material class
void broadcast(int root=0, bool fromDevice=false, bool toDevice=true)
void copy(To::Target target, integer index=-1)
MaterialHandler(integer numMaterials)
Constructor.
integer numMaterials
number of materials or rather material instances
void communicate(int from, int to, bool fromDevice=false, bool toDevice=true)
~MaterialHandler()
Destructor.
Material * d_materials
device instance of material class
ArtificialViscosity artificialViscosity
__device__ real max(real a, real b)
Maximum value out of two floating point values.
void copy(T *h_var, T *d_var, std::size_t count=1, To::Target copyTo=To::device)
Copy between host and device and vice-versa.
void free(T *d_var)
Free device memory.
void malloc(T *&d_var, std::size_t count)
Allocate device memory.
Artificial viscosity parameters.