Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Distinguishing features  



1.1  Easy to use GUI  





1.2  OpenFOAM and SU2 CFD solver interfaces  





1.3  FEniCS multiphysics solver interface  





1.4  Fully scriptable CLI interface  





1.5  External mesh generator interfaces  





1.6  Other distinguishing features  







2 See also  





3 References  





4 External links  














FEATool Multiphysics






Українська
 

Edit links
 









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Cite this page
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 






From Wikipedia, the free encyclopedia
 


FEATool Multiphysics
Developer(s)Precise Simulation
Stable release

1.16.6 / 25 June 2024 (2024-06-25)

Repositorygithub.com/precise-simulation/featool-multiphysics
Written inMATLAB, C, Fortran
Operating systemWindows, Linux, Mac OSX
TypeComputer-aided engineering (CAE), multiphysics, finite element analysis (FEA), simulation software
Websitewww.featool.com[1]

FEATool Multiphysics ("Finite Element Analysis Toolbox for Multiphysics") is a physics, finite element analysis (FEA), and partial differential equation (PDE) simulation toolbox.[2] FEATool Multiphysics features the ability to model fully coupled heat transfer, fluid dynamics, chemical engineering, structural mechanics, fluid-structure interaction (FSI), electromagnetics, as well as user-defined and custom PDE problems in 1D, 2D (axisymmetry), or 3D, all within a graphical user interface (GUI) or optionally as script files.[3] FEATool has been employed and used in academic research,[4][5] teaching,[6][7] and industrial engineering simulation contexts.[8]

Distinguishing features[edit]

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, and postprocessing and visualization.[9]

1. Geometry Mode 2. Grid Mode 3. Multiphysics Mode
Geometry generation and CAD import
Automatic mesh and grid generation
Subdomain, equation, and coefficient specification
4. Boundary Mode 5. Solve Mode 6. Post Mode
Boundary condition specification
Solution of PDE systems
Postprocessing and visualization of results

Easy to use GUI[edit]

The FEATool graphical user interface (GUI) shown above was designed for ease of use and minimal prerequisite knowledge.[10] 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.[11]

OpenFOAM and SU2 CFD solver interfaces[edit]

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[12] 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[edit]

Similar to the OpenFOAM and SU2 solver interfaces, FEATool also features a fully integrated interface to the FEniCS general FEM and multiphysics solver.[13] Using the FEATool-FEniCS interface, as both codes feature PDE definition languages, multiphysics problems can automatically be translated and converted to FEniCS Python definition files, after which system calls to the FEniCS solver is made, and the resulting solution re-imported.

Fully scriptable CLI interface[edit]

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.[14] 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).[15][16][17] 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.[18]

% Geometry and mesh generation.
fea.sdim = { 'x' 'y' };
fea.geom.objects = { gobj_rectangle( 0, 2.2, 0, 0.41, 'R1' ), ...
                     gobj_circle( [0.2 0.2], 0.05, 'C1' ) };
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{2,end} = { 0.001 };

% 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{2,end}{1,4} = '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', {'u' 'v'} )

p_cyl_front = evalexpr( 'p', [0.15; 0.2], fea );
p_cyl_back  = evalexpr( 'p', [0.25; 0.2], fea );
delta_p_computed  = p_cyl_front - p_cyl_back
delta_p_reference = 0.117520

External mesh generator interfaces[edit]

Similar to the external solver interfaces, FEATool features built-in support for the Gmsh[19] and Triangle[20] mesh generators. If requested instead of the built-in mesh generation algorithm,[21] 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[edit]

See also[edit]

References[edit]

  1. ^ "FEATool Multiphysics homepage".
  • ^ "FEM Multiphysics Simulation for MATLAB!? (engineer.com)".
  • ^ "Engineering - FEM Multiphysics Simulation for MATLAB (engineering.com)".
  • ^ "Modeling the Effects of Increased Glucose Concentration on Intraocular Pressure CSURE 2014 Summer Program" (PDF).
  • ^ "Multiple Scale Modeling for Predictive Material Deformation Analysis" (PDF).
  • ^ "the Department of Civil Engineering at the University of Memphis CIVIL 7117 course notes".
  • ^ "Department of Mathematics at Lamar University course notes".
  • ^ "Topology Optimization Modeling with MATLAB and FEATool Multiphysics".
  • ^ "FEATool Multiphysics online documentation suite".
  • ^ "Designing Easy To Use Simulation and Technical Software".
  • ^ "What is Multiphysics CAE Simulation?". Archived from the original on 2017-03-24. Retrieved 2017-03-23.
  • ^ OpenCFD. "OpenFOAM® - Official home of The Open Source Computational Fluid Dynamics (CFD) Toolbox". www.openfoam.com. Archived from the original on 22 September 2016.
  • ^ "The FEniCS Project page". The FEniCS Project. Archived from the original on 5 March 2023. Retrieved 28 July 2016.
  • ^ "Digital Engineering Editor's Pick: FEATool Multiphysics 1.4 (digitaleng.news)". Archived from the original on 2018-07-24. Retrieved 2018-07-23.
  • ^ De Vahl Davis, G. (1996). "Benchmark computations of laminar flow around a cylinder". Flow Simulation with High-Performance Computers II, Notes on Numerical Fluid Dynamics. 52 (3): 547–566. doi:10.1002/fld.1650030305.
  • ^ On higher order methods for the stationary incompressible Navier-Stokes equations (PhD). University of Heidelberg. 1998. CiteSeerX 10.1.1.38.533.
  • ^ John, Volker; Matthies, Gunar (2001). "Higher-order finite element discretizations in a benchmark problem for incompressible flows". International Journal for Numerical Methods in Fluids. 37 (8): 885–903. Bibcode:2001IJNMF..37..885J. CiteSeerX 10.1.1.42.8087. doi:10.1002/fld.195. S2CID 15806686.
  • ^ "Black-Scholes custom equation and PDE modeling tutorial".
  • ^ "Comparison of open source mesh generators (GiD, Gmsh, and Triangle)". 6 March 2018.
  • ^ Shewchuk, Jonathan Richard (1996). "Triangle: Engineering a 2D quality mesh generator and Delaunay triangulator". Applied Computational Geometry Towards Geometric Engineering. Lecture Notes in Computer Science. Vol. 1148. pp. 203–222. CiteSeerX 10.1.1.62.1901. doi:10.1007/BFb0014497. ISBN 978-3-540-61785-3.
  • ^ Persson, Per-Olof; Strang, Gilbert (2004). "A Simple Mesh Generator in MATLAB". SIAM Review. 46 (2): 329–345. Bibcode:2004SIAMR..46..329P. CiteSeerX 10.1.1.84.7905. doi:10.1137/S0036144503429121.
  • ^ "GiD - The personal pre and post processor homepage".
  • ^ "GMV - The General Mesh Viewer homepage". Archived from the original on 2013-09-26. Retrieved 2018-07-23.
  • ^ "FEATool Multiphysics technical specifications".
  • External links[edit]



    Retrieved from "https://en.wikipedia.org/w/index.php?title=FEATool_Multiphysics&oldid=1230909123"

    Categories: 
    Computational fluid dynamics
    Computer-aided engineering software
    Continuum mechanics
    Finite element software
    Finite element software for Linux
    Scientific simulation software
    Physics software
     



    This page was last edited on 25 June 2024, at 11:04 (UTC).

    Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



    Privacy policy

    About Wikipedia

    Disclaimers

    Contact Wikipedia

    Code of Conduct

    Developers

    Statistics

    Cookie statement

    Mobile view



    Wikimedia Foundation
    Powered by MediaWiki