View Issue Details

IDProjectCategoryView StatusLast Update
0003553OpenFOAMPatchpublic2020-09-22 17:31
Reporterwyldckat Assigned Tohenry  
PrioritylowSeverityminorReproducibilitysometimes
Status resolvedResolutionfixed 
Product Versiondev 
Fixed in Versiondev 
Summary0003553: Two 'options' files found to need a bit of fixing in multiphaseSystems and solidDisplacementThermo
DescriptionThe following files have the respective issues:

- applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/multiphaseSystems/Make/options

    - It's including folder 'alphaContactAngle' that no longer exists.

- applications/solvers/stressAnalysis/solidDisplacementFoam/solidDisplacementThermo/Make/options

    - it's using 'EXE_LIBS', when it should be using 'LIB_LIBS'

Attached files:

- correcting_options_v1.patch - provides the summary patch for easier review

- correcting_options_v1.tar.gz - provides the two aforementioned files
TagsNo tags attached.

Activities

wyldckat

2020-09-22 16:29

updater  

correcting_options_v1.patch (1,508 bytes)   
diff --git a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/multiphaseSystems/Make/options b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/multiphaseSystems/Make/options
index 4150059..e41b231 100644
--- a/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/multiphaseSystems/Make/options
+++ b/applications/solvers/multiphase/multiphaseEulerFoam/multiphaseEulerFoam/multiphaseSystems/Make/options
@@ -3,7 +3,6 @@ EXE_INC = \
     -I../../interfacialCompositionModels/lnInclude \
     -I../../phaseSystems/lnInclude \
     -I../../multiphaseCompressibleMomentumTransportModels/lnInclude \
-    -IalphaContactAngle \
     -I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \
     -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude \
     -I$(LIB_SRC)/thermophysicalModels/reactionThermo/lnInclude \
diff --git a/applications/solvers/stressAnalysis/solidDisplacementFoam/solidDisplacementThermo/Make/options b/applications/solvers/stressAnalysis/solidDisplacementFoam/solidDisplacementThermo/Make/options
index 9149b94..376d161 100644
--- a/applications/solvers/stressAnalysis/solidDisplacementFoam/solidDisplacementThermo/Make/options
+++ b/applications/solvers/stressAnalysis/solidDisplacementFoam/solidDisplacementThermo/Make/options
@@ -3,6 +3,6 @@ EXE_INC = \
     -I$(LIB_SRC)/thermophysicalModels/solidThermo/lnInclude \
     -I$(LIB_SRC)/finiteVolume/lnInclude
 
-EXE_LIBS = \
+LIB_LIBS = \
     -lfiniteVolume \
     -lsolidThermo
correcting_options_v1.patch (1,508 bytes)   

henry

2020-09-22 17:31

manager   ~0011520

Resolved by commit f3c21b74a894efee565c54da6358fc4e50afcd90

Issue History

Date Modified Username Field Change
2020-09-22 16:29 wyldckat New Issue
2020-09-22 16:29 wyldckat Status new => assigned
2020-09-22 16:29 wyldckat Assigned To => henry
2020-09-22 16:29 wyldckat File Added: correcting_options_v1.patch
2020-09-22 16:29 wyldckat File Added: correcting_options_v1.tar.gz
2020-09-22 17:31 henry Status assigned => resolved
2020-09-22 17:31 henry Resolution open => fixed
2020-09-22 17:31 henry Fixed in Version => dev
2020-09-22 17:31 henry Note Added: 0011520