Plugins
henryfs.lua File Reference

Functions

function HydroPressure (x, y)
 
function HydroPressure_bnd (x, y, t, si)
 
function HydroPressure_c (x, y)
 
function RechargeTop (x, y, t, si)
 
function SeaConc (x, y, t, si)
 

Variables

parameterNumber fsDepth = 0
 
parameterNumber recharge = 7
 

Function Documentation

◆ HydroPressure()

function HydroPressure ( ,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / henryfs.lua :159-161

function HydroPressure(x, y)
return henry2D_g * henry2D_rho * (y + params.fs_depth)
end
function HydroPressure(x, y)

References type().

◆ HydroPressure_bnd()

function HydroPressure_bnd ( ,
,
,
si   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / henryfs.lua :137-144

function HydroPressure_bnd(x, y, t, si)
pp = HydroPressure_c(x, y)
if pp < 0 then
return false, 0
else
return true, pp
end
end
function HydroPressure_c(x, y)
function HydroPressure_bnd(x, y, t, si)

References dim, grid(), and numRefs.

◆ HydroPressure_c()

function HydroPressure_c ( ,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / henryfs.lua :155-157

function HydroPressure_c(x, y)
return henry2D_g * 1025 * (y + params.fs_depth)
end

◆ RechargeTop()

function RechargeTop ( ,
,
,
si   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / henryfs.lua :165-167

function RechargeTop(x, y, t, si)
return -(2.0-x)*params.recharge
end
function RechargeTop(x, y, t, si)

◆ SeaConc()

function SeaConc ( ,
,
,
si   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / henryfs.lua :146-153

function SeaConc(x, y, t, si)
pp = HydroPressure_c(x, y)
if pp < 0 then
return false, 0
else
return true, 1
end
end
function SeaConc(x, y, t, si)

Variable Documentation

◆ fsDepth

parameterNumber fsDepth = 0

◆ recharge

parameterNumber recharge = 7