-
Dear community,
One of the motivations behind this modular implementation is to be able to create a model once (using function So my question is, what should be the return value of pre_processing( ), which can be passed as a parameter to the solution( ) thus, helping in solving the model for different boundary conditions? Is something like this possible? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Interesting, I would also like to know if something like that would be possible. I guess your |
Beta Was this translation helpful? Give feedback.
Interesting, I would also like to know if something like that would be possible. I guess your
pre_processing()
is time-consuming? Do you have considerednon_interactive
mode to speed things up? Otherwise you could passpre_processing
itself tosolution()
. That's basically what I'm doing up till now (I do use some classes for preprocessing, e.g. for certain geometries, a meshing-class, material_classes ...).