Edgar J. Kaiser
Certified Consultant
Please login with a confirmed email address before reporting spam
Posted:
3 years ago
14.08.2021, 06:10 GMT-4
David,
yes complex post processing in Comsol can be painstakingly slow. One workaround I sometimes use is doing the integration using an intop() operation during solving. I define a respective variable and I define a state variable pointing to this variable.
In my experience such integrations during solving do not noticeably increase the solution time. I assume during solving this runs in optimized C code while the post processing is based on slow interpreted Java code.
Using the state variable is key because only this way this variable becomes a part of the solution. Otherwise, if using the normal variable, the integration will be done in Java again. You don't need to run the solver again, update solution is sufficient after you defined it all.
State variables don't have a unit, you need to take care of that by yourself.
Hope it helps, cheers,
Edgar
-------------------
Edgar J. Kaiser
emPhys Physical Technology
www.emphys.com
David,
yes complex post processing in Comsol can be painstakingly slow. One workaround I sometimes use is doing the integration using an intop() operation during solving. I define a respective variable and I define a state variable pointing to this variable.
In my experience such integrations during solving do not noticeably increase the solution time. I assume during solving this runs in optimized C code while the post processing is based on slow interpreted Java code.
Using the state variable is key because only this way this variable becomes a part of the solution. Otherwise, if using the normal variable, the integration will be done in Java again. You don't need to run the solver again, update solution is sufficient after you defined it all.
State variables don't have a unit, you need to take care of that by yourself.
Hope it helps, cheers,
Edgar