Replies: 1 comment
|
The documentation and the current void CalendarAgeing(const Model_SPM &M,
std::string pref,
const DEG_ID °id,
int cellType,
int verbose);For the current branch, add a call explicitly in slide::Model_SPM M;
slide::DEG_ID deg;
// Select the degradation submodels required for your study.
deg.SEI_id.add_model(2);
deg.SEI_porosity = 0;
deg.CS_id.add_model(0);
deg.CS_diffusion = 0;
deg.LAM_id.add_model(2);
deg.LAM_id.add_model(3);
deg.pl_id = 1;
const int cellType = slide::cellType::KokamNMC;
const int verbose = 1;
slide::CalendarAgeing(M, pref, deg, cellType, verbose);Use degradation-model IDs appropriate to your experiment; the values above reproduce the model-selection example currently commented in If your purpose is to reproduce the old documentation exactly, use the |
Uh oh!
There was an error while loading. Please reload this page.
I am trying to run the master (main.cpp) and the information in the docs does not relate to the current main.cpp. For instance, I want to run the function "CalendarAgeing" as per the doc and I am not able to locate it or call that function. I can see it in the previous version. Should I run that?
All reactions