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, simultaneou ...
") is a physics, finite element analysis (FEA), and
partial differential equation In mathematics, a partial differential equation (PDE) is an equation which involves a multivariable function and one or more of its partial derivatives. The function is often thought of as an "unknown" that solves the equation, similar to ho ...
(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, physical chemistry and engineering, fluid dynamics is a subdiscipline of fluid mechanics that describes the flow of fluids – liquids and gases. It has several subdisciplines, including (the study of air and other gases in motion ...
,
chemical engineering Chemical engineering is an engineering field which deals with the study of the operation and design of chemical plants as well as methods of improving production. Chemical engineers develop economical commercial processes to convert raw materials ...
, structural mechanics, fluid-structure interaction (FSI),
electromagnetics In physics, electromagnetism is an interaction that occurs between particles with electric charge via electromagnetic fields. The electromagnetic force is one of the four fundamental forces of nature. It is the dominant force in the interacti ...
, 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 whic ...
), or 3D, all within a graphical user interface ( GUI) 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 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 * Solu ...
, and postprocessing and visualization.


OpenFOAM and SU2 CFD & multi-solver interfaces

FEATool has introduced a multi-simulation/solver feature whereby integrated interfaces (UI) to popular open-source solvers are available. This enables several solvers to be used from a single unified GUI and CLI without requiring 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 and SU2. Using the SU2 and OpenFOAM GUI interfaces automatically converts fluid dynamics models to compatible corresponding mesh, boundary, and control dictionary files, runs simulations, and afterwards imports and interpolates the resulting solutions back into the toolbox. 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 (prog ...
definition files, after which the FEniCS solver is called, 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 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, SU2, Dolfin/ FEniCS XML, GiD, Gmsh, GMV, Triangle (PSLG), and plain
ASCII ASCII ( ), an acronym for American Standard Code for Information Interchange, is a character encoding standard for representing a particular set of 95 (English language focused) printable character, printable and 33 control character, control c ...
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 Plotly is a technical computing company headquartered in Montreal, Quebec, that develops online data analytics and data visualization, visualization tools. Plotly provides online graphing, analytics, and statistics tools for individuals and colla ...
, 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, simultaneou ...
* Computer-aided engineering (CAE) *
Continuum mechanics Continuum mechanics is a branch of mechanics that deals with the deformation of and transmission of forces through materials modeled as a ''continuous medium'' (also called a ''continuum'') rather than as discrete particles. Continuum mec ...
* 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