svZeroDSolver
Loading...
Searching...
No Matches
SimulationParameters.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the
2// University of California, and others. SPDX-License-Identifier: BSD-3-Clause
3/**
4 * @file SimulationParameters.h
5 * @brief Source file to read simulation configuration
6 */
7#ifndef SVZERODSOLVER_SIMULATIONPARAMETERS_HPP_
8#define SVZERODSOLVER_SIMULATIONPARAMETERS_HPP_
9
10#include <list>
11#include <nlohmann/json.hpp>
12#include <stdexcept>
13#include <string>
14
15#include "ActivationFunction.h"
16#include "Model.h"
17#include "State.h"
18#include "debug.h"
19
20/**
21 * @brief Simulation parameters
22 *
23 * Each of these can be set from the .json configuration file as part of the
24 * dict which is keyed by "simulation_parameters".
25 *
26 * For example:
27 *
28 * "simulation_parameters": {
29 * "number_of_cardiac_cycles": 30,
30 * "number_of_time_pts_per_cardiac_cycle": 201,
31 * "output_all_cycles": true
32 * }
33 *
34 * each parameter in the documentation may be specified using the attribute name
35 * and a value which takes the type of the attribute.
36 *
37 */
39 // Negative value indicates this has not
40 // been read from config file yet.
41 double sim_time_step_size{0.0}; ///< Simulation time step size
42 double sim_abs_tol{0.0}; ///< Absolute tolerance for simulation
43 double sim_cardiac_period{-1.0}; ///< Cardiac period
44 int sim_num_cycles{0}; ///< Number of cardiac cycles to simulate
45 int sim_pts_per_cycle{0}; ///< Number of time steps per cardiac cycle
47 false}; ///< If model does not have RCR boundary conditions, simulate
48 ///< model to convergence (based on cycle-to-cycle error of last
49 ///< two cardiac cycles); if it does, update number of cardiac
50 ///< cycles to simulate to be value estimated from equation 21 of
51 ///< Pfaller 2021
52 double sim_cycle_to_cycle_error{0}; ///< Cycle-to-cycle error
53 int sim_num_time_steps{0}; ///< Total number of time steps
54 int sim_nliter{0}; ///< Maximum number of non-linear iterations in time
55 ///< integration
56 double sim_rho_infty{0.0}; ///< Spectral radius of generalized-alpha
57 int output_interval{0}; ///< Interval of writing output
58
59 bool sim_steady_initial{0}; ///< Start from steady solution
61 false}; ///< Output variable based instead of vessel based
62 bool output_mean_only{false}; ///< Output only the mean value
63 bool output_derivative{false}; ///< Output derivatives
64 bool output_all_cycles{false}; ///< Output all cardiac cycles
65
67 false}; ///< Running 0D simulation coupled with external solver
68 double sim_external_step_size{0.0}; ///< Step size of external solver if
69 ///< running coupled
70};
71
72/// @brief Wrapper class for nlohmann:json with error checking
73class JsonWrapper : public nlohmann::json {
74 public:
75 /**
76 * @brief Wrap around JSON configuration with detailed error message in case
77 * key is not found in configuration
78 *
79 * @param json JSON configuration
80 * @param component Name of the JSON sub-list to be extracted
81 * @param name_str Name string of the JSON sub-list to be extracted
82 * @param id Index of JSON sub-list to be extracted
83 */
84 JsonWrapper(const nlohmann::json& json, const std::string& component,
85 const std::string& name_str, const int& id)
86 : nlohmann::json(json[component][id]),
87 component(component),
88 name_str(name_str),
89 block_id(id) {}
90
91 /**
92 * @brief Wrap error check around key retrieval (throws detailed error if key
93 * doesn't exist)
94 *
95 * @param key Key to retrieve from JSON object
96 * @return JSON entry of key
97 */
98 const nlohmann::json& operator[](const char* key) const {
99 if (!this->contains(key)) {
100 if (this->contains(name_str)) {
101 const std::string name = this->at(name_str);
102 throw std::runtime_error("Key " + std::string(key) +
103 " not found in element " + name +
104 " of component " + component);
105 } else {
106 throw std::runtime_error(
107 "Key " + std::string(key) + " not found in element number " +
108 std::to_string(block_id) + " of component " + component);
109 }
110 }
111 return this->at(key);
112 }
113
114 // Inherit functions
115 using nlohmann::json::contains;
116 using nlohmann::json::value;
117 using nlohmann::json::operator[];
118
119 private:
120 std::string component;
121 std::string name_str;
122 int block_id;
123};
124
125/**
126 * @brief Generate a new block and add its parameters to the model
127 *
128 * @param model The model that the block is added to
129 * @param block_params_json The JSON configuration containing the block
130 * parameter values
131 * @param block_type The type of block
132 * @param name The name of the block
133 * @param internal Is this an internal block? This is relevant for the
134 * calibrator
135 * @param periodic Is this block periodic with the cardiac cycle? This is
136 * relevant for coupling with external solvers
137 * @return int The block count
138 */
139int generate_block(Model& model, const nlohmann::json& block_params_json,
140 const std::string& block_type, const std::string_view& name,
141 bool internal = false, bool periodic = true);
142
143/**
144 * @brief Create an activation function from JSON (analogous to generate_block)
145 *
146 * Validates keys against the activation type's params, reads scalar
147 * parameters, and returns a created ActivationFunction. Caller associates
148 * it with a chamber block via set_activation_function().
149 *
150 * @param model Model (for cardiac_cycle_period)
151 * @param j JSON object (e.g. chamber_config["activation_function"])
152 * @param chamber_name Chamber name for error messages
153 * @return Unique pointer to the created activation function
154 */
155std::unique_ptr<ActivationFunction> generate_activation_function(
156 Model& model, const nlohmann::json& j, const std::string& chamber_name);
157
158/**
159 * @brief Load initial conditions from a JSON configuration
160 *
161 * @param config The JSON configuration
162 * @param model The model
163 * @return State Initial configuration for the model
164 */
165State load_initial_condition(const nlohmann::json& config, Model& model);
166
167/**
168 * @brief Load the simulation parameters from a JSON configuration
169 *
170 * @param config The JSON configuration
171 * @return SimulationParameters Simulation parameters read from configuration
172 */
173SimulationParameters load_simulation_params(const nlohmann::json& config);
174
175/**
176 * @brief Load the 0D block in the model from a configuration
177 *
178 * @param config The json configuration
179 * @param model The 0D model
180 * @
181 */
182void load_simulation_model(const nlohmann::json& config, Model& model);
183
184/**
185 * @brief Check that the JSON configuration has the required inputs
186 *
187 * @param config The JSON configuration
188 */
189void validate_input(const nlohmann::json& config);
190
191/**
192 * @brief Handle the creation of vessel blocks and connections with boundary
193 * conditions
194 *
195 * @param model The model the block is associated with
196 * @param connections Vector storing the connections between blocks
197 * @param config The JSON configuration
198 * @param component Name of the component to retrieve from config
199 * @param vessel_id_map Map between vessel names and IDs
200 */
201void create_vessels(
202 Model& model,
203 std::vector<std::tuple<std::string, std::string>>& connections,
204 const nlohmann::json& config, const std::string& component,
205 std::map<int, std::string>& vessel_id_map);
206
207/**
208 * @brief Handle the creation of external coupling blocks and connections with
209 * other blocks
210 *
211 * @param model The model the block is associated with
212 * @param connections Vector storing the connections between blocks
213 * @param config The JSON configuration
214 * @param component Name of the component to retrieve from config
215 * @param vessel_id_map Map between vessel names and IDs
216 * @param bc_type_map Map between boundary condition names and their types
217 */
219 Model& model,
220 std::vector<std::tuple<std::string, std::string>>& connections,
221 const nlohmann::json& config, const std::string& component,
222 std::map<int, std::string>& vessel_id_map,
223 std::map<std::string, std::string>& bc_type_map);
224
225/**
226 * @brief Handle the creation of boundary condition blocks
227 *
228 * @param model The model the block is associated with
229 * @param config The JSON configuration
230 * @param component Name of the component to retrieve from config
231 * @param bc_type_map Map between boundary condition names and their types
232 * @param closed_loop_bcs List of boundary conditions that should be connected
233 * to a closed loop heart block
234 */
235void create_boundary_conditions(Model& model, const nlohmann::json& config,
236 const std::string& component,
237 std::map<std::string, std::string>& bc_type_map,
238 std::vector<std::string>& closed_loop_bcs);
239
240/**
241 * @brief Handle the creation of junctions and their connections
242 *
243 * @param model The model the block is associated with
244 * @param connections Vector storing the connections between blocks
245 * @param config The JSON configuration
246 * @param component Name of the component to retrieve from config
247 * @param vessel_id_map Map between vessel names and IDs
248 */
250 Model& model,
251 std::vector<std::tuple<std::string, std::string>>& connections,
252 const nlohmann::json& config, const std::string& component,
253 std::map<int, std::string>& vessel_id_map);
254
255/**
256 * @brief Handle the creation of closed-loop blocks and associated connections
257 *
258 * @param model The model the block is associated with
259 * @param connections Vector storing the connections between blocks
260 * @param config The JSON configuration
261 * @param component Name of the component to retrieve from config
262 * @param closed_loop_bcs List of boundary conditions that should be connected
263 * to a closed loop heart block
264 */
266 Model& model,
267 std::vector<std::tuple<std::string, std::string>>& connections,
268 const nlohmann::json& config, const std::string& component,
269 std::vector<std::string>& closed_loop_bcs);
270
271/**
272 * @brief Handle the creation of valves and their associated connections
273 *
274 * @param model The model the block is associated with
275 * @param connections Vector storing the connections between blocks
276 * @param config The JSON configuration
277 * @param component Name of the component to retrieve from config
278 */
279void create_valves(
280 Model& model,
281 std::vector<std::tuple<std::string, std::string>>& connections,
282 const nlohmann::json& config, const std::string& component);
283
284/**
285 * @brief Handle the creation of chambers
286 *
287 * @param model The model the block is associated with
288 * @param connections Vector storing the connections between blocks
289 * @param config The JSON configuration containing all the closed loop blocks
290 * @param component Name of the component to retrieve from config
291 */
292void create_chambers(
293 Model& model,
294 std::vector<std::tuple<std::string, std::string>>& connections,
295 const nlohmann::json& config, const std::string& component);
296
297#endif
Activation function classes for cardiac chamber models.
model::Model source file
void create_chambers(Model &model, std::vector< std::tuple< std::string, std::string > > &connections, const nlohmann::json &config, const std::string &component)
Handle the creation of chambers.
Definition SimulationParameters.cpp:598
void create_junctions(Model &model, std::vector< std::tuple< std::string, std::string > > &connections, const nlohmann::json &config, const std::string &component, std::map< int, std::string > &vessel_id_map)
Handle the creation of junctions and their connections.
Definition SimulationParameters.cpp:482
void create_boundary_conditions(Model &model, const nlohmann::json &config, const std::string &component, std::map< std::string, std::string > &bc_type_map, std::vector< std::string > &closed_loop_bcs)
Handle the creation of boundary condition blocks.
Definition SimulationParameters.cpp:362
void create_valves(Model &model, std::vector< std::tuple< std::string, std::string > > &connections, const nlohmann::json &config, const std::string &component)
Handle the creation of valves and their associated connections.
Definition SimulationParameters.cpp:580
State load_initial_condition(const nlohmann::json &config, Model &model)
Load initial conditions from a JSON configuration.
Definition SimulationParameters.cpp:631
void create_vessels(Model &model, std::vector< std::tuple< std::string, std::string > > &connections, const nlohmann::json &config, const std::string &component, std::map< int, std::string > &vessel_id_map)
Handle the creation of vessel blocks and connections with boundary conditions.
Definition SimulationParameters.cpp:327
void create_closed_loop(Model &model, std::vector< std::tuple< std::string, std::string > > &connections, const nlohmann::json &config, const std::string &component, std::vector< std::string > &closed_loop_bcs)
Handle the creation of closed-loop blocks and associated connections.
Definition SimulationParameters.cpp:524
void load_simulation_model(const nlohmann::json &config, Model &model)
Load the 0D block in the model from a configuration.
Definition SimulationParameters.cpp:253
std::unique_ptr< ActivationFunction > generate_activation_function(Model &model, const nlohmann::json &j, const std::string &chamber_name)
Create an activation function from JSON (analogous to generate_block)
Definition SimulationParameters.cpp:142
SimulationParameters load_simulation_params(const nlohmann::json &config)
Load the simulation parameters from a JSON configuration.
Definition SimulationParameters.cpp:210
int generate_block(Model &model, const nlohmann::json &block_params_json, const std::string &block_type, const std::string_view &name, bool internal=false, bool periodic=true)
Generate a new block and add its parameters to the model.
Definition SimulationParameters.cpp:44
void create_external_coupling(Model &model, std::vector< std::tuple< std::string, std::string > > &connections, const nlohmann::json &config, const std::string &component, std::map< int, std::string > &vessel_id_map, std::map< std::string, std::string > &bc_type_map)
Handle the creation of external coupling blocks and connections with other blocks.
Definition SimulationParameters.cpp:397
void validate_input(const nlohmann::json &config)
Check that the JSON configuration has the required inputs.
Definition SimulationParameters.cpp:201
State source file.
const nlohmann::json & operator[](const char *key) const
Wrap error check around key retrieval (throws detailed error if key doesn't exist)
Definition SimulationParameters.h:98
JsonWrapper(const nlohmann::json &json, const std::string &component, const std::string &name_str, const int &id)
Wrap around JSON configuration with detailed error message in case key is not found in configuration.
Definition SimulationParameters.h:84
Model of 0D elements.
Definition Model.h:52
State of the system.
Definition State.h:19
DEBUG_MSG source file.
Simulation parameters.
Definition SimulationParameters.h:38
bool sim_coupled
Running 0D simulation coupled with external solver.
Definition SimulationParameters.h:66
int sim_nliter
Definition SimulationParameters.h:54
bool output_all_cycles
Output all cardiac cycles.
Definition SimulationParameters.h:64
int sim_pts_per_cycle
Number of time steps per cardiac cycle.
Definition SimulationParameters.h:45
int sim_num_time_steps
Total number of time steps.
Definition SimulationParameters.h:53
double sim_external_step_size
Definition SimulationParameters.h:68
double sim_time_step_size
Simulation time step size.
Definition SimulationParameters.h:41
int sim_num_cycles
Number of cardiac cycles to simulate.
Definition SimulationParameters.h:44
bool output_mean_only
Output only the mean value.
Definition SimulationParameters.h:62
bool sim_steady_initial
Start from steady solution.
Definition SimulationParameters.h:59
int output_interval
Interval of writing output.
Definition SimulationParameters.h:57
bool output_variable_based
Output variable based instead of vessel based.
Definition SimulationParameters.h:60
double sim_abs_tol
Absolute tolerance for simulation.
Definition SimulationParameters.h:42
double sim_cardiac_period
Cardiac period.
Definition SimulationParameters.h:43
bool output_derivative
Output derivatives.
Definition SimulationParameters.h:63
double sim_cycle_to_cycle_error
Cycle-to-cycle error.
Definition SimulationParameters.h:52
bool use_cycle_to_cycle_error
Definition SimulationParameters.h:46
double sim_rho_infty
Spectral radius of generalized-alpha.
Definition SimulationParameters.h:56