FEATool Multiphysics
   HOME

TheInfoList



OR:

FEATool Multiphysics ("Finite Element Analysis Toolbox for
Multiphysics In computational modelling, multiphysics simulation (often shortened to simply "multiphysics") is defined as the simultaneous simulation of different aspects of a physical system or systems and the interactions among them. For example, simultaneous ...
") is a physics, finite element analysis (FEA), and PDE simulation toolbox. FEATool Multiphysics features the ability to model fully coupled
heat transfer Heat transfer is a discipline of thermal engineering that concerns the generation, use, conversion, and exchange of thermal energy (heat) between physical systems. Heat transfer is classified into various mechanisms, such as thermal conduction, ...
,
fluid dynamics In physics and engineering, fluid dynamics is a subdiscipline of fluid mechanics that describes the flow of fluids— liquids and gases. It has several subdisciplines, including ''aerodynamics'' (the study of air and other gases in motion) an ...
,
chemical engineering Chemical engineering is an engineering field which deals with the study of operation and design of chemical plants as well as methods of improving production. Chemical engineers develop economical commercial processes to convert raw materials int ...
,
structural mechanics Structural mechanics or Mechanics of structures is the computation of deformations, deflections, and internal forces or stresses (''stress equivalents'') within structures, either for design or for performance evaluation of existing structures. It ...
, fluid-structure interaction (FSI),
electromagnetics In physics, electromagnetism is an interaction that occurs between particles with electric charge. It is the second-strongest of the four fundamental interactions, after the strong force, and it is the dominant force in the interactions of ...
, as well as user-defined and custom PDE problems in 1D, 2D (
axisymmetry Rotational symmetry, also known as radial symmetry in geometry, is the property a shape has when it looks the same after some rotation by a partial turn. An object's degree of rotational symmetry is the number of distinct orientations in which i ...
), or 3D, all within a graphical user interface (
GUI The GUI ( "UI" by itself is still usually pronounced . or ), graphical user interface, is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, inste ...
) or optionally as script files. FEATool has been employed and used in academic research, teaching, and industrial engineering simulation contexts.


Distinguishing features

FEATool Multiphysics is a fully integrated physics and PDE simulation environment where the modeling process is subdivided into six steps; preprocessing (
CAD Computer-aided design (CAD) is the use of computers (or ) to aid in the creation, modification, analysis, or optimization of a design. This software is used to increase the productivity of the designer, improve the quality of design, improve co ...
and geometry modeling), mesh and grid generation, physics and PDE specification, boundary condition specification,
solution Solution may refer to: * Solution (chemistry), a mixture where one substance is dissolved in another * Solution (equation), in mathematics ** Numerical solution, in numerical analysis, approximate solutions within specified error bounds * Soluti ...
, and postprocessing and visualization.


Easy to use GUI

The FEATool graphical user interface (GUI) shown above was designed for ease of use and minimal prerequisite knowledge. Specifically, because of the full integration of CAD and simulation tools users can switch between pre-processing, analysis, and post-processing modes to change simulation parameters, modify geometry and meshes, to solution evaluation and visualization. In this way FEATool can make up for any performance overhead by saving users time with problem set up and analysis.


OpenFOAM and SU2 CFD solver interfaces

FEATool has introduced a multi-simulation feature whereby interfaces to popular academic and open-source solvers are developed. This feature enables these solvers to be used from the FEATool GUI and CLI without detailed knowledge of the syntax or peculiarities of each solver. The CFD solver interfaces allows fluid dynamics problems to be solved with the finite volume CFD solvers
OpenFOAM OpenFOAM (for "Open-source Field Operation And Manipulation") is a C++ toolbox for the development of customized numerical solvers, and pre-/post-processing utilities for the solution of continuum mechanics problems, most prominently including ...
and SU2. Using the interfaces automatically converts incompressible Navier-Stokes FEATool models to compatible OpenFOAM/SU2 mesh, boundary, and control dictionary files, runs simulations, and afterwards imports and interpolates the resulting solutions back into FEATool. In this way more advanced, larger, and parallel CFD models, for example including turbulence, can be simulated without leaving the FEATool interface.


FEniCS multiphysics solver interface

Similar to the OpenFOAM and SU2 solver interfaces, FEATool also features a fully integrated interface to the FEniCS general FEM and multiphysics solver. Using the FEATool-FEniCS interface, as both codes feature PDE definition languages, multiphysics problems can automatically be translated and converted to FEniCS
Python Python may refer to: Snakes * Pythonidae, a family of nonvenomous snakes found in Africa, Asia, and Australia ** ''Python'' (genus), a genus of Pythonidae found in Africa and Asia * Python (mythology), a mythical serpent Computing * Python (pro ...
definition files, after which system calls to the FEniCS solver is made, and the resulting solution re-imported.


Fully scriptable CLI interface

GUI operation is recorded as equivalent function calls, and therefore in addition to binary formats, FEATool simulation models can also be saved and exported as fully scriptable and editable MATLAB compatible m-script files. The short MATLAB script below illustrates how a complete flow around a cylinder computational fluid dynamics (CFD) benchmark problem can be defined and solved with the FEATool m-script functions (including geometry, grid generation, problem definition, solving, and postprocessing all in a few lines of code). Specifically, custom partial differential equations (PDE) and expressions can simply be entered and evaluated as string expressions as-is, without need for further compilation or writing custom functions. % Geometry and mesh generation. fea.sdim = ; fea.geom.objects = ; fea = geom_apply_formula( fea, 'R1-C1' ); fea.grid = gridgen( fea, 'hmax', 0.02 ); % Problem definition (incompressible Navier-Stokes equations multiphysics mode). fea = addphys( fea, @navierstokes ); % Prescribe fluid viscosity (density is default 1). fea.phys.ns.eqn.coef = ; % Boundary conditions (Non-specified boundaries are % per default prescribed no-slip zero velocity walls). % Inflow (bc type 2) at boundary 4. fea.phys.ns.bdr.sel(4) = 2; % Outflow (bc type 3, zero pressure) at boundary 2. fea.phys.ns.bdr.sel(2) = 3; % Parabolic inflow profile x-velocity expression. fea.phys.ns.bdr.coef = '4*0.3*y*(0.41-y)/0.41^2'; % Check, parse, and solve problem. fea = parsephys( fea ); fea = parseprob( fea ); fea.sol.u = solvestat( fea ); % Alternatively solve with OpenFOAM or SU2 % fea.sol.u = openfoam( fea ); % fea.sol.u = su2( fea ); % Postprocessing and visualization. postplot( fea, 'surfexpr', 'sqrt(u^2+v^2)', ... 'arrowexpr', ) p_cyl_front = evalexpr( 'p', .15; 0.2 fea ); p_cyl_back = evalexpr( 'p', .25; 0.2 fea ); delta_p_computed = p_cyl_front - p_cyl_back delta_p_reference = 0.117520


External mesh generator interfaces

Similar to the external solver interfaces, FEATool features built-in support for the
Gmsh Gmsh is a finite-element mesh generator developed by Christophe Geuzaine and Jean-François Remacle. Released under the GNU General Public License, Gmsh is free software. Gmsh contains 4 modules: for geometry description, meshing, solving and p ...
and Triangle mesh generators. If requested instead of the built-in mesh generation algorithm, FEATool will convert and export appropriate Gridgen2D, Gmsh, or Triangle input data files, call the mesh generators through external system calls, and re-import the resulting grids into FEATool.


Other distinguishing features

* Stand-alone operation (without MATLAB) or can be used as a MATLAB toolbox. * Fully cross platform MATLAB interoperability including other toolboxes. * Extensive FEM basis function library (linear and high order conforming P1-P5, non-conforming, bubble, and vector FEM discretizations). * Support for structured and un-structured line interval, triangles, quadrilaterals, tetrahedral, and hexahedral mesh elements. * 28 pre-defined equations and multiphysics modes in 1D, 2D Cartesian and cylindrical coordinates, as well as full 3D. * Support for custom user defined PDE equations. * Mesh and geometry import, export, and conversion between
OpenFOAM OpenFOAM (for "Open-source Field Operation And Manipulation") is a C++ toolbox for the development of customized numerical solvers, and pre-/post-processing utilities for the solution of continuum mechanics problems, most prominently including ...
, SU2, Dolfin/ FEniCS XML, GiD,
Gmsh Gmsh is a finite-element mesh generator developed by Christophe Geuzaine and Jean-François Remacle. Released under the GNU General Public License, Gmsh is free software. Gmsh contains 4 modules: for geometry description, meshing, solving and p ...
, GMV, Triangle (PSLG), and plain
ASCII ASCII ( ), abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices. Because of ...
grid formats. * Online postprocssing and image export with
ParaView ParaView is an open-source multiple-platform application for interactive, scientific visualization. It has a client–server architecture to facilitate remote visualization of datasets, and generates level of detail (LOD) models to maintain in ...
Glance, Plotly, and social sharing of results.


See also

*
Multiphysics In computational modelling, multiphysics simulation (often shortened to simply "multiphysics") is defined as the simultaneous simulation of different aspects of a physical system or systems and the interactions among them. For example, simultaneous ...
* Computer-aided engineering (CAE) *
Continuum mechanics Continuum mechanics is a branch of mechanics that deals with the mechanical behavior of materials modeled as a continuous mass rather than as discrete particles. The French mathematician Augustin-Louis Cauchy was the first to formulate such m ...
* Finite element method (FEM)


References


External Links


FEATool Multiphysics website
{{CAE software Computational fluid dynamics Computer-aided engineering software Continuum mechanics Finite element software Finite element software for Linux Scientific simulation software Physics software