The FirstOrderPDE class is used to solve First Order Partial Differential Equations like the Advection Equation. Let 'u(x, t)' = concentration in a fluid with velocity 'v' at position '0 <= x <= xm' and time 't' > 0. Numerically solve the
Solve for the concentration of the column at time t, returning the vector of concentration representing the concentration profile of column over its length. This method uses an Explicit Finite Difference technique to solve the PDE. L-W is the Lax-Wendroff scheme which has second-order accuracy.
Solve for the concentration of the column at time t, returning the vector of concentration representing the concentration profile of column over its length. This method uses an Explicit Finite Difference technique to solve the PDE. L-W is the Lax-Wendroff scheme which has second-order accuracy.
Solve for the concentration of the column at time t, returning the vector of concentration representing the concentration profile of column over its length. This method uses an Explicit Finite Difference technique to solve the PDE. Uses the MacCormack scheme which has second-order accuracy.
Solve for the concentration of the column at time t, returning the vector of concentration representing the concentration profile of column over its length. This method uses an Explicit Finite Difference technique to solve the PDE. Uses the MacCormack scheme which has second-order accuracy.