Forcing function using an Aux Variable #23835
-
for a transient heat transfer problem can I update the value of my variable in my problem domain prior to the next time step, with the value of an aux variable value at the nearest neighboring mesh and then solve the next time step with the imposed value? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello We typically do not allow modifying nonlinear variable values but you can do it using a MultiApp. You send the value you want to impose then send them back using a transfer. The cannon way to do this would be to write a UserObject that modifies the nonlinear variables. We dont have one that can do what you want afaik Guillaume |
Beta Was this translation helpful? Give feedback.
Hello
We typically do not allow modifying nonlinear variable values but you can do it using a MultiApp. You send the value you want to impose then send them back using a transfer.
The cannon way to do this would be to write a UserObject that modifies the nonlinear variables. We dont have one that can do what you want afaik
Guillaume