Library rename and compilation
This commit is contained in:
parent
af06811c2a
commit
a195a0979e
8 changed files with 8 additions and 5 deletions
|
@ -12,6 +12,7 @@ EXE_LIBS = \
|
||||||
-lerrorEstimation \
|
-lerrorEstimation \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lfiniteArea \
|
-lfiniteArea \
|
||||||
|
-lfoam \
|
||||||
-ltetFiniteElement \
|
-ltetFiniteElement \
|
||||||
-ltetMotionSolver \
|
-ltetMotionSolver \
|
||||||
-lforces \
|
-lforces \
|
||||||
|
@ -30,7 +31,6 @@ EXE_LIBS = \
|
||||||
-lliquids \
|
-lliquids \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lODE \
|
-lODE \
|
||||||
-lOpenFOAM \
|
|
||||||
-lpdf \
|
-lpdf \
|
||||||
-lphaseModel \
|
-lphaseModel \
|
||||||
-lradiation \
|
-lradiation \
|
||||||
|
|
|
@ -5,7 +5,6 @@ EXE_INC = \
|
||||||
-I$(LIB_SRC)/lagrangian/basic/lnInclude
|
-I$(LIB_SRC)/lagrangian/basic/lnInclude
|
||||||
|
|
||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-lOpenFOAM \
|
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-llagrangian \
|
-llagrangian \
|
||||||
$(PROJECT_LIBS)
|
$(PROJECT_LIBS)
|
||||||
|
|
|
@ -6,7 +6,6 @@ EXE_INC = \
|
||||||
-I$(LIB_SRC)/finiteArea/lnInclude
|
-I$(LIB_SRC)/finiteArea/lnInclude
|
||||||
|
|
||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-lOpenFOAM \
|
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-llagrangian \
|
-llagrangian \
|
||||||
-lfiniteArea
|
-lfiniteArea
|
||||||
|
|
|
@ -9,5 +9,4 @@ EXE_INC = \
|
||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lOpenFOAM \
|
|
||||||
-lfiniteVolume
|
-lfiniteVolume
|
||||||
|
|
|
@ -13,7 +13,7 @@ set -x
|
||||||
|
|
||||||
# update foam version strings if required
|
# update foam version strings if required
|
||||||
wmakePrintBuild -check || /bin/rm -f foam/Make/$WM_OPTIONS/global.? 2>/dev/null
|
wmakePrintBuild -check || /bin/rm -f foam/Make/$WM_OPTIONS/global.? 2>/dev/null
|
||||||
penFOAM
|
|
||||||
wmakeLnInclude foam
|
wmakeLnInclude foam
|
||||||
wmakeLnInclude meshTools
|
wmakeLnInclude meshTools
|
||||||
wmakeLnInclude OSspecific/$WM_OSTYPE
|
wmakeLnInclude OSspecific/$WM_OSTYPE
|
||||||
|
|
|
@ -21,6 +21,8 @@ License
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include "backwardD2dt2Scheme.H"
|
#include "backwardD2dt2Scheme.H"
|
||||||
#include "fvcDiv.H"
|
#include "fvcDiv.H"
|
||||||
#include "fvMatrices.H"
|
#include "fvMatrices.H"
|
||||||
|
|
|
@ -21,6 +21,8 @@ License
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
#include "constitutiveModel.H"
|
#include "constitutiveModel.H"
|
||||||
#include "volFields.H"
|
#include "volFields.H"
|
||||||
#include "fvc.H"
|
#include "fvc.H"
|
||||||
|
|
|
@ -21,6 +21,8 @@ License
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
inline Foam::scalar Foam::C3H6O::rho(scalar p, scalar T) const
|
inline Foam::scalar Foam::C3H6O::rho(scalar p, scalar T) const
|
||||||
{
|
{
|
||||||
return rho_.f(p, T);
|
return rho_.f(p, T);
|
||||||
|
|
Reference in a new issue