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
When you have a decapode with equations like this:
dexp =parse_decapode(quote
A::Form0{X}
B::Form1{X}
C::Form0{X}
D::Form0{X}
B ==grad(A)
C ==f(A,B)
∂ₜ(A) == C
∂ₜ(D) == C + D
end)
Our current code will eliminate the variable C and by renaming it to A\dot. We probably need another table of aliases that is just a binary relation on Var for tracking equations between variables.
@olynch, does the GATLab approach solve this problem in a more general way?
The text was updated successfully, but these errors were encountered:
I ran into this problem when building the DecaExpr outside of parse_decapode or @decapode. There might be something about how I am generating the DecaExpr.
When you have a decapode with equations like this:
Our current code will eliminate the variable
C
and by renaming it toA\dot
. We probably need another table of aliases that is just a binary relation onVar
for tracking equations between variables.@olynch, does the GATLab approach solve this problem in a more general way?
The text was updated successfully, but these errors were encountered: