Plugins
trench2D_siltloam.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.lua :147-149

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.lua :143-145

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.lua :135-141

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

◆ Trench2DPressureStart()

function Trench2DPressureStart ( ,
,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / trench2D_siltloam.lua :151-153

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