featool-multiphysics — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited featool-multiphysics (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
USE FOR:
tags: [FEA, CFD, simulation, multiphysics, engineering, physics, OpenFOAM, FEniCS, SU2, heat-transfer, structural-mechanics] kind: tool category: scientific-computing
FEATool (Finite Element Analysis Toolbox) is an integrated simulation platform for modeling coupled physics phenomena, continuum mechanics, and engineering problems. Tagline: "Physics Simulation Made Easy"
| Domain | Examples |
|---|---|
| Heat & Mass Transfer | conduction, convection, diffusion |
| Fluid Dynamics (CFD) | laminar/turbulent flow, Navier-Stokes |
| Structural Mechanics | stress, strain, deformation |
| Electromagnetics | electrostatics, magnetostatics |
| Custom PDEs | user-defined equations in natural math notation |
| Solver | Type | Notes |
|---|---|---|
| OpenFOAM | CFD | Open-source, industry-grade CFD |
| FEniCS | FEA/Multiphysics | Python-based FEM framework |
| SU2 | CFD | Aerospace-grade solver |
| Built-in | General FEM | Default solver, no external deps |
1. Geometry → define 1D/2D/3D shapes (CAD primitives or import)
2. Grid → automatic mesh generation (structured/unstructured)
3. Equation → select physics mode or enter custom PDEs
4. Boundary → assign boundary conditions (Dirichlet, Neumann, Robin)
5. Solve → run solver (built-in or external: OpenFOAM/FEniCS/SU2)
6. Post → visualize results (ParaView, Plotly web plots, export)# Download installer from GitHub Releases
# https://github.com/precise-simulation/featool-multiphysics/releases
# Minimum: 64-bit OS, 4 GB RAM, up to 10 GB disk% Install .mlappinstall via MATLAB APPS toolbar
% Then launch:
featool# FEniCS must be installed separately
pip install fenics-dolfinx # or via condaFEATool supports programmable workflows via Python scripts:
import featool
# Load a model
model = featool.load('heat_exchanger.fea')
# Run solver
model.solve()
# Extract results
T = model.get_field('T') # Temperature field
print(f"Max temperature: {max(T):.2f} K")
# Export to ParaView
model.export('results.vtk')% Create new model
fea = feamodel();
fea.sdim = {'x', 'y'}; % 2D problem
% Define geometry
fea.geom = gobj_rectangle(0, 1, 0, 1);
% Set physics (heat equation)
fea = addphys(fea, @heattransfer);
fea.phys.ht.bdr.coef{2,end} = 100; % Boundary temp = 100°C
% Mesh and solve
fea = parsephys(fea);
fea = parsegeom(fea);
fea = meshgeo(fea, 'hmax', 0.05);
fea = solvetime(fea);
% Post-process
postplot(fea, 'surfexpr', 'T');Enter equations in natural notation:
∂u/∂t - ∇·(k∇u) = f
# In FEATool syntax:
# Equation: ut - k*(uxx + uyy) = f
# Where k = thermal conductivity coefficient| Format | Use Case |
|---|---|
.fea binary | Save/reload FEATool models |
MATLAB .m script | Reproducible parametric studies |
Python/FEniCS .py | Open-source solver pipeline |
ParaView .vtk/.vtp | Advanced 3D visualization |
| Plotly HTML | Interactive web plots |
% Load built-in example
fea = ex_heattransfer1();
fea = solvetime(fea);
postplot(fea, 'surfexpr', 'T', 'title', 'Temperature Distribution')fea = feamodel();
fea = addphys(fea, @navierstokes);
% Set Reynolds number, inlet velocity, solve
fea = solvetime(fea);
postplot(fea, 'surfexpr', 'sqrt(u^2+v^2)', 'title', 'Velocity magnitude')fea = feamodel();
fea = addphys(fea, @linearelasticity);
% Define material (E, nu), boundary loads
fea = solvetime(fea);
postplot(fea, 'surfexpr', 'von_mises', 'title', 'Von Mises Stress')| Scenario | Recommended Solver |
|---|---|
| Simple heat/structural | Built-in FEM |
| Complex CFD / turbulence | OpenFOAM |
| Coupled multiphysics research | FEniCS |
| Aerodynamics / aerospace CFD | SU2 |
| Education / quick prototyping | Built-in GUI |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.