In many places, there is extended use of g_h and g_high to refer to the higher-dimensional grid (same for d_h and d_high) and g_l and g_low to refer to the lower-dimensional grid (same for d_l and d_low). Ideally, we should homogenize these references using g_primary (d_primary) and g_secondary (d_secondary), respectively.
A Python library for solving any system of hyperbolic or parabolic Partial Differential Equations. The PDEs can have stiff source terms and non-conservative components.
This repository contains a Fortran implementation of a 2D flow using Finite Volume Method (FVM). The code models the transport of a passive scalar for both orthogonal and skewed meshes.
Implement finite volume scheme to solve the Laplace equation (3.4), page 33 of "Finite Volume Methods", by Robert Eymard, Thierry Gallouet, and Raphaele Herbin. The link of the book: https://www.cmi.univ-mrs.fr/~herbin/PUBLI/bookevol.pdf
In many places, there is extended use of
g_handg_highto refer to the higher-dimensional grid (same ford_handd_high) andg_landg_lowto refer to the lower-dimensional grid (same ford_landd_low). Ideally, we should homogenize these references usingg_primary(d_primary) andg_secondary(d_secondary), respectively.