Useful tools
MaterialPointGenerator.sortbycol Method
julia
sortbycol(pts, col::T) where T <: Int
Description:
Sort the points in pts
according to the column col
.
MaterialPointGenerator.csv2geo2d Method
julia
csv2geo2d(csv_file::String, geo_file::String)
Description:
Convert the CSV file (.csv) to the Gmsh geo (.geo) file.
sourceMaterialPointGenerator.sort_pts Method
julia
sort_pts(pts::Matrix)
Description:
Sort the points in pts by the (z-), y-, and x-coordinates, in that order (2/3D).
sourceMaterialPointGenerator.sort_pts_xy Function
julia
sort_pts_xy(pts::Matrix)
Description:
Sort the points in pts by the x- and y-coordinates, in that order.
sourceMaterialPointGenerator.populate_pts Method
julia
populate_pts(pts_cen, h)
Description:
Populate the points around the center points pts_cen
with the spacing h/4
(2/3D).
MaterialPointGenerator.insolidbase Method
julia
insolidbase(mp::Matrix{T2}, surf::Matrix{T2}, nv::Matrix{T2}) where T2
Description:
Check if the points are inside the solid. The function uses the normal vector, and return the points that are outside the surface.
source