Skip to content

Useful tools

MaterialPointGenerator.sortbycol Method
julia
sortbycol(pts, col::T) where T <: Int

Description:

Sort the points in pts according to the column col.

source
MaterialPointGenerator.csv2geo2d Method
julia
csv2geo2d(csv_file::String, geo_file::String)

Description:

Convert the CSV file (.csv) to the Gmsh geo (.geo) file.

source
MaterialPointGenerator.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).

source
MaterialPointGenerator.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.

source
MaterialPointGenerator.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).

source
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