This repository contains structures and functions to perform geometry computations, generate meshes, and perform numerical integration for finite element analyses (FEM/FEA).
We use Vector
and Matrix
from Russell Lab, thus some Debian packages are required.
Documentation:
Install some libraries:
bash
sudo apt-get install \
liblapacke-dev \
libopenblas-dev
👆 Check the crate version and update your Cargo.toml accordingly:
toml
[dependencies]
gemlab = "*"
```rust use gemlab::integ::defaultintegpoints; use gemlab::mesh::{setpadcoords, At, Extract, Mesh, Region}; use gemlab::shapes::{op, Scratchpad}; use gemlab::StrError; use std::collections::HashSet;
fn main() -> Result<(), StrError> {
// Input the raw mesh data using a text file
// and compute all derived information such as shapes,
// and boundary entities. These data area stored in a
// Region for the sake of convenience.
//
// 1.0 5------,6.------7
// | [3],' .[4] |
// | ,'
. |
// |,' .|
// 0.5 3 [2] 4
// |
. .'|
// | . .' |
// | [0]
. .'[1] |
// 0.0 0------`1'------2
// 0.0 0.5 1.0
let path = "./data/meshes/fourtri3onequa4.msh";
let mesh = Mesh::fromtext_file(path)?;
let region = Region::with(&mesh, Extract::Boundary)?;
// Find entities along the boundary of the mesh
// by giving coordinates. The `At` enum provides
// an easy way to define the type of the constraint
// such as line, plane, circle, etc.
check(®ion.find.points(At::Y(0.5))?, &[3, 4]);
check(®ion.find.edges(At::X(1.0))?, &[(2, 4), (4, 7)]);
// Perform numerical integration to compute
// the area of cell # 2
let ndim = 2;
let cell_2 = &mesh.cells[2];
let mut pad = Scratchpad::new(ndim, cell_2.kind)?;
set_pad_coords(&mut pad, &cell_2.points, &mesh);
let ips = default_integ_points(cell_2.kind);
let mut area = 0.0;
for p in 0..ips.len() {
let iota = &ips[p];
let weight = ips[p][3];
let det_jac = op::calc_jacobian(&mut pad, iota)?;
area += weight * det_jac;
}
assert_eq!(area, 0.5);
Ok(())
}
fn check
The following table shows what combinations of geometry-number-of-dimensions (geo_ndim
) and
space-number-of-dimensions (space_ndim
) are possible. There are three cases:
CABLE
-- geo_ndim = 1
and space_ndim = 2 or 3
; e.g., line in 2D or 3D (cables and rods)SHELL
-- geo_ndim = 2
and space_ndim = 3
; e.g. Tri or Qua in 3D (shells and surfaces)SOLID
-- geo_ndim = space_ndim
; e.g., Tri and Qua in 2D or Tet and Hex in 3D| geo_ndim
| space_ndim = 2
| space_ndim = 3
|
|:----------:|:----------------:|:----------------:|
| 1 | CABLE
| CABLE
|
| 2 | SOLID
| SHELL
|
| 3 | impossible | SOLID
|
The coverage tool cannot properly handle the macros in russellchk such as assertapproxeq!
and assertvecapproxeq! We could use the #[no_coverage]
decorator on
the testing function to stop the coverage tool assessing the region coverage within the test function.
However, we let the coverage tool report incorrect Region Coverage anyway. Sometimes, the coverage
tool also fails to report line coverage even when all lines have been run.