Public Interface
Oetqf.gen_gmsh_mesh
— Methodgen_gmsh_mesh(::Val{:BEMHex8Mesh},
llx::T, lly::T, llz::T, dx::T, dy::T, dz::T, nx::I, ny::I, nz::I;
rfx::T=one(T), rfy::T=one(T), rfzh::AbstractVector=ones(nz),
rfxType::AbstractString="Bump", rfyType::AbstractString="Bump",
output::AbstractString="temp.msh"
) where {T, I}
Gernate a box using 8-node hexahedron elements by vertically extruding transfinite curve on xy plane, allowing total flexibility on the mesh size in z direction, and refinement in xy plane.
Arguments
llx
,lly
,llz
: coordinates of low-left corner on the top surfacedx
,dy
,dz
: x-, y-, z-extensionnx
,ny
: number of cells along x-, y-axisrfx
,rfy
: refinement coefficients along x-, y-axis using Bump algorithm, please refergmsh.model.geo.mesh.setTransfiniteCurve
rfzh
: accumulated height of cells along z-axis which will be normalized automatically, please referheights
ingmsh.model.geo.extrude
Oetqf.wsolve
— Methodwsolve(prob::ODEProblem, alg::OrdinaryDiffEqAlgorithm,
file, nstep, getu, ustrs, tstr; kwargs...)
Write the solution to HDF5 file while solving the ODE. The interface is exactly the same as solve
an ODEProblem
except a few more about the saving procedure. Notice, it will set save_everystep=false
so to avoid memory blow up. The return code will be written as an attribute in tstr
data group.
Extra Arguments
file::AbstractString
: name of file to be savednstep::Integer
: number of steps after which a saving operation will be performedgetu::Function
: function handler to extract desired solution for savingustr::AbstractVector
: list of names to be assigned for each components, whose length must equal the length ofgetu
outputtstr::AbstractString
: name of time data
KWARGS
stride::Integer=1
: downsampling rate for saving outputsappend::Bool=false
: if true then append solution after the end offile
force::Bool=false
: force to overwrite the existing solution file