You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, there is no way to calculate / update parameters in customPDE with simulation data in the first timestep or others. An example would be something like this:
for (unsigned int i = 0; i < dim; i++)
{
element_volume = element_volume * userInputs.domain_size[i] / std::pow(2, userInputs.refine_factor);
}
Having something like this would be nice to do some calculation of parameters without having to do that in every cell.
The text was updated successfully, but these errors were encountered:
Currently, there is no way to calculate / update parameters in customPDE with simulation data in the first timestep or others. An example would be something like this:
Having something like this would be nice to do some calculation of parameters without having to do that in every cell.
The text was updated successfully, but these errors were encountered: