10 Mar
2016
10 Mar
'16
10:27 a.m.
On 10/03/16 10:18, William Booker wrote:
I have
#Define trial and test functions (u,r,p) = TrialFunctions(W) # Velocity, density, pressure respectively (dFdu_vec, dFdr, dFdp) = TestFunctions(W) # Test functions for velocity, density, pressure respectively
defined earlier in the code. Is the problem that I have reused the name of my trial functions as a split(w) later on?
Yes, these are just names, so the later definition overwrites the earlier one. Lawrence