Plugins
stoeckl_lens.lua File Reference

Functions

function HydroPressure (x, y)
 
function left_boundary (x, y, t, si)
 
function top_boundary (x, y, t, si)
 
function top_boundary_c (x, y, t, si)
 

Function Documentation

◆ HydroPressure()

function HydroPressure ( ,
 
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / stoeckl_lens.lua :126-128

function HydroPressure(x, y)
return (y - 0.3) * lens_rho_c * lens_g
end
function HydroPressure(x, y)

References dim, grid(), and numRefs.

◆ left_boundary()

function left_boundary ( ,
,
,
si   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / stoeckl_lens.lua :148-150

function left_boundary(x, y, t, si)
return true, HydroPressure(x, y)
end
function left_boundary(x, y, t, si)

◆ top_boundary()

function top_boundary ( ,
,
,
si   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / stoeckl_lens.lua :130-137

function top_boundary(x, y, t, si)
if t >= T0 or x <= 0.51 then
return false, 0.0
else
return true, recharge_rate*lens_rho -- [m^3/s]
end
end
StringTable s
function top_boundary(x, y, t, si)

References type().

◆ top_boundary_c()

function top_boundary_c ( ,
,
,
si   
)

location: /home/runner/work/docs/docs/ug4/plugins/unsat_flow/config / stoeckl_lens.lua :139-145

function top_boundary_c(x, y, t, si)
if t >= T0 or x <= 0.51 then
return false, 0.0
else
return true, 0.0
end
end
function top_boundary_c(x, y, t, si)

References type().