Plugins
trench2D_siltloam_c0.lua File Reference

Functions

function Trench2DAquiferBoundary (x, y, t)
 
function Trench2DDrainagePressureBoundary (x, y, t)
 
function Trench2DDrainagePressureBoundaryTime (x, y, t, tD)
 
function Trench2DPressureStart (x, y, t)
 

Function Documentation

◆ Trench2DAquiferBoundary()

function Trench2DAquiferBoundary ( ,
,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / trench2D_siltloam_c0.lua :123-125

function Trench2DAquiferBoundary(x, y, t)
return true, (1.0 - y) * rhog
end
function Trench2DAquiferBoundary(x, y, t)

References type().

◆ Trench2DDrainagePressureBoundary()

function Trench2DDrainagePressureBoundary ( ,
,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / trench2D_siltloam_c0.lua :119-121

return Trench2DDrainagePressureBoundaryTime(x, y, t, 86400)
end
function Trench2DDrainagePressureBoundary(x, y, t)
function Trench2DDrainagePressureBoundaryTime(x, y, t, tD)

◆ Trench2DDrainagePressureBoundaryTime()

function Trench2DDrainagePressureBoundaryTime ( ,
,
,
tD   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / trench2D_siltloam_c0.lua :111-117

if (t <= tD) then
return true, (2.2*t / tD - 2.0) * Trench2D_rho * 9.81
else
return true, 0.2 * Trench2D_rho * 9.81
end
end

◆ Trench2DPressureStart()

function Trench2DPressureStart ( ,
,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / trench2D_siltloam_c0.lua :127-129

function Trench2DPressureStart(x, y, t)
return (1.0 - y) * rhog
end
function Trench2DPressureStart(x, y, t)

References type().