Phase separation in block copolymers #27827
-
Hello team, I am new to MOOSE and C++. I want to simulate phase separation in block copolymers. For, that I want to change the split formulation to reflect these equations - I have created an auxkernel based modifying SplitCHResBase.h. Here are the new *.h and *.C files I created - SplitCHPhaseSep.zip. Is this the right way to do it? Is there a better way? When I compile with these files, I get the error - Can anyone help me identify what mistake I might be making? Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 12 replies
-
Hello
means you are summing a vector and a double. You have to use a loop to do that or maybe you do not want this?
residual is a real. |
Beta Was this translation helpful? Give feedback.
Hello
means you are summing a vector and a double. You have to use a loop to do that or maybe you do not want this?
residual is a real.
The other term is a real times a vector (gradient of the i-th test function at quadrature point qp)
maybe you mean to use
_test
instead?