System of Equations

Assume that the following two equations have to be evaluated:

  F1 = Laplace_FE(X1) - DX_FE(Xp)  | interior_points;   
  F2 = Laplace_FE(X2) - DY_FE(Xp)  | interior_points;       

These two equations are independent from each other. Therefore, it is possible to evaluate these two equations by one iteration. This can be obtained by writing these two equations as a system of equations:

  Iterate_system(F1 == Laplace_FE(X1) - DX_FE(Xp),
                 F2 == Laplace_FE(X2) - DY_FE(Xp), interior_points);      



Handbook

Last modified: Mon Mar 27 11:32:27 MET DST 2000