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; use gemlab::mesh::{setpadcoords, At, Extract, Features, Find, Mesh}; use gemlab::shapes::Scratchpad; use gemlab::StrError; use std::collections::HashSet;
fn main() -> Result<(), StrError> {
// Input the raw mesh data using a text file
//
// 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)?;
// Extract features such boundary edges and faces.
// Find entities along the boundary of the mesh given coordinates.
// The `At` enum provides an easy way to define the type of the
// constraint such as line, plane, circle, etc.
let find = Find::new(&mesh, None);
assert_eq!(find.point_ids(At::Y(0.5), |_| true)?, &[3, 4]);
assert_eq!(find.edge_keys(At::X(1.0), |_| true)?, &[(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 = integ::default_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 = pad.calc_jacobian(iota)?;
area += weight * det_jac;
}
assert_eq!(area, 0.5);
Ok(())
} ```
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 approxeq
and vecapproxeq 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.