@@ -7,7 +7,7 @@ Module Physics_CHKeywordsModule
77! Required arguments
88! ******************
99!
10- character (len= KEYWORD_LENGTH), parameter :: TCH_KEY = " chemical characteristic time (s)"
10+ character (len= KEYWORD_LENGTH), parameter :: TCH_KEY = " chem characteristic time (s)"
1111 character (len= KEYWORD_LENGTH), parameter :: INTERFACE_WIDTH_KEY = " interface width (m)"
1212 character (len= KEYWORD_LENGTH), parameter :: INTERFACE_TENSION_KEY = " interface tension (n/m)"
1313 CHARACTER (LEN= KEYWORD_LENGTH), DIMENSION (3 ) :: physics_CHKeywords = [INTERFACE_WIDTH_KEY, &
@@ -84,7 +84,7 @@ SUBROUTINE ConstructPhysicsStorage_CH( controlVariables, Lref, timeRef, pRef, su
8484 multiphase_ % sigma_wDim = controlVariables % DoublePrecisionValueForKey(INTERFACE_TENSION_KEY)
8585
8686 if ( .not. almostEqual(multiphase_ % tCH_wDim, 0.0_RP ) ) then
87- multiphase_ % M0_wDim = POW2(Lref)* multiphase_ % eps_wDim / (multiphase_ % tCH_wDim * multiphase_ % sigma_wDim)
87+ multiphase_ % M0_wDim = POW2(Lref)* ( multiphase_ % eps_wDim** 2 ) / (multiphase_ % tCH_wDim * multiphase_ % sigma_wDim)
8888 else
8989 multiphase_ % M0_wDim = 0.0_RP
9090 end if
@@ -95,7 +95,7 @@ SUBROUTINE ConstructPhysicsStorage_CH( controlVariables, Lref, timeRef, pRef, su
9595 multiphase_ % sigma = multiphase_ % sigma_wDim / pRef
9696
9797 if ( .not. almostEqual(multiphase_ % tCH, 0.0_RP ) ) then
98- multiphase_ % M0 = multiphase_ % eps / (multiphase_ % tCH * multiphase_ % sigma)
98+ multiphase_ % M0 = ( multiphase_ % eps** 2 ) / (multiphase_ % tCH * multiphase_ % sigma)
9999 else
100100 multiphase_ % M0 = 0.0_RP
101101 end if
0 commit comments