1. Overview and Getting Started

1.1. Background

FUN3D was born in the late 1980s as a research code. The code’s original purpose was to study existing algorithms and to develop new algorithms for unstructured-grid fluid dynamic simulations spanning incompressible flow to transonic flow. The project has since grown into a suite of codes that cover not only analysis, but adjoint-based error estimation, mesh adaptation, and design optimization of fluid dynamic problems extending into the hypersonic regime.

The solver has been applied to a number of complex large-scale problems by groups at NASA Langley, industry, and academia. (See the Applications section of this manual.) Internally, the software has been used to study airframe noise, space transportation vehicles, flow control devices using synthetic jets, the design of wind tunnel and flight experiments, and so forth. Boeing, Lockheed, Cessna, New Piper, and others have used the tools for applications such as high-lift, cruise performance, and studies of revolutionary concepts. The software has also been used for military applications, large-scale computer science research at national labs, as well as algorithmic studies performed at universities around the country. For example, researchers at Georgia Tech have been using FUN3D as their base for rotorcraft work.

In 1999, we began employing Agile Software Development practices, primarily those of Extreme Programming. We use Continuous Integration on a wide range of computer platforms. To catch integration errors, the suite of codes are repeatedly checked-out around the clock from our central repository, compiled, and several hundred regression and unit tests are run. Email and cell phone SMS provide instant notification of any errors. We practice pair-programming on a regular basis to raise our truck number and adhere to a coding standard (see the Appendix) while continuously looking for refactoring opportunities. We use a Wiki, email lists, retrospectives, and Scrum status meetings to facilitate communication, identify impediments, and foster team collaboration.

1.2. Capabilities

  • Analysis, Sensitivity Analysis, and Design Optimization
    • Hand-coded discrete adjoint for reverse mode differentiation
    • Automated complex variables for forward mode differentiation
  • Adjoint-based adaptation for outputs
  • Gradient-based adaptation
  • Domain decomposition with MPI communication for distributed computing
  • Node-based, finite volume discretization
  • 2D and 3D options
  • Thermodynamic models
    • Perfect gas (compressible and incompressible)
    • Thermochemical equilibrium, non-equilibrium
  • Multigrid with implicit time stepping where the linear system is solved using either
    • Point-implicit
    • Line-implicit
    • Newton-Krylov
  • Upwind flux functions
    • Roe flux-difference splitting
    • Van Leer flux-vector splitting
    • AUFS
    • HLLC
  • Turbulence models (all integrated to the wall)
    • Spalart Allmaras
    • k-omega/SST
  • Propulsion simulation (10.5)
    • Inlets (10.5)
    • Nozzles (10.5)
    • System performance calculation (10.5-beta)
  • Grid motion (time-varying translation/rotation)
  • Time-accurate options to third-order with error controllers
  • Modified linear elasticity solver for mesh morphing with hand-coded discrete adjoint and automated complex-variable modes for sensitivities
  • Predominantly F95 implementation with some F2003 features, readily portable to wide range of platforms and compilers
    • Hardware: SGI, Sun, Cray, HP, IBM, DEC, Pentium, Athlon, Opteron, Mac
    • Compilers: SGI, Sun, Compaq, Lahey-Fujitsu, Cray, Absoft, Intel, IBM, HP

1.3. Requirements

Our usual computing platform is Linux clusters, so this is the preferred environment for the software. A number of users prefer to work on Suns, SGIs, Mac OS X, Opterons, Crays, HPs, IBMs, or DEC Alphas; these platforms are supported as well. Users have also run on other architectures such as MS Windows based PC’s, however we don’t provide explicit support for these machines. The codes were originally geared towards vector processing, but have since been modified for cache-based platforms.

For FUN3D, you will need a Fortran 2003 compiler. This code has gone through an extensive cleanup/overhaul over the past few years to lay a solid foundation for the extension to flows in thermochemical non-equilibrium, and is considerably easier to use and modify than ever before. New features include hooks for generalized boundary conditions, inclusion of incompressible physics formerly available only as a separate code, much more organized routines in a module setting, and extensive use of F95/2003 coding features such as derived types. The user can compile the code to run in either sequential mode or using MPI. The most improved aspect of FUN3D is the grid processing and partitioning stage, where users can now easily go directly from a number of popular grid formats to the solver.

For two-dimensional grid generation, we recommend the AFLR2 software written by Dave Marcum at Mississippi State University. Our automated scripts are geared towards this grid generator, but you may choose to use your own if you wish. Three-dimensional grid generation is much more involved, and is left entirely up to the user. Our most common sources of 3D grids are VGRID (NASA Langley) and SolidMesh/AFLR3 (Mississippi State). We also prefer the GridEx package (NASA Langley), which serves as an interface for a variety of CAD packages and grid generators.

We also offer unique design optimization and grid adaptation capabilities built around a discrete adjoint solver for the RANS equations. Before pursuing design optimization, you should be an experienced FUN3D user, and have some serious hardware available to run on. The adaptation capability is very far along, but still being matured. Get in touch with questions.

1.4. Pre-built Modules

Pre-built FUN3D modules are available in the NASA Advanced Supercomputing (NAS) and NASA LaRC K-cluster environments. To request the access to pre-built FUN3D modules, please fill out a NAMS request, LaRC Computational Fluid Dynamics (CFD) suite of tools (FUN3DV14 for NAS) (Link) for modules on NAS or LaRC Computational Fluid Dynamics (CFD) suite of tools (FUN3DV14 for K-Cluster) (Link) for modules on the K-cluster.

The table below shows the modules for running on different architectures on NAS and K.


NAS
K
Intel
FUN3D_INTG
FUN3D_INTG
Intel AVX512 Compatible
FUN3D_INTG_AVX512
FUN3D_INTG_AVX512
Rome
FUN3D_INTG_Rome
FUN3D_INTG
V100
FUN3D_INTG_AVX512
FUN3D_INTG_AVX512
A100
FUN3D_INTG_Rome
FUN3D_INTG_A100

On NAS, the modulefiles are located at /swbuild/fun3d/fun3dv14_users/modulefiles. There are three v14.0.2 modules: FUN3D_INTG/14.0.2, FUN3D_INTG_AVX512/14.0.2, and FUN3D_INTG_Rome/14.0.2. FUN3D_INTG_AVX512 is for better performance on Skylake and Cascade Lake processors that support AVX-512 instructions. FUN3D_INTG_Rome is for running on AMD Rome processors. To use a module, add the path and load the module. Here is an example.
 
module use /swbuild/fun3d/fun3dv14_users/modulefiles
module purge
module load FUN3D_INTG/14.0.2
Users with access to 13.7 modules previously can load the modules following the example below.
 
module use /swbuild/fun3d/shared/fun3d_users/modulefiles
module purge
module load FUN3D/13.7

On the K-cluster, the modulefiles are located at /u/fun3d/shared/fun3dv14_users/modulefiles. There are three 14.0.2 modules: FUN3D_INTG/14.0.2, FUN3D_INTG_AVX512/14.0.2, and FUN3D_INTG_A100/14.0.2. FUN3D_INTG_AVX512 is for better performance on K4 nodes with Skylake and Cascade Lake processors that support AVX-512 instructions. FUN3D_INTG_A100 is compiled for use on K5-A100 nodes only. To use a module, add the path and load the module. Here is an example.

module use /u/shared/fun3d/fun3dv14_users/modulefiles
module purge
module load FUN3D_INTG/14.0.2
Users with access to 13.7 modules previously can load the modules following the example below.
module use /u/shared/fun3d/fun3d_users/modulefiles
module purge
module load FUN3D/13.7

1.5. Release History

The following release notes summarize changes to FUN3D’s functionality associated with each formal release. Changes not visible to the user are omitted to keep the list concise.

Version 14.x—In preparation

Enhancements

  • Added new_sa_neg option in &spalart. This is a new formulation for diffusion terms of the SA-neg turbulence model, based on paper AIAA-2023-3252. It only applies to SA-neg and Des-neg models, and it needs to be .true. when using GPUs with these two models.
  • Modified the default residual smoothing formulation in SFE to improve robustness.

Bug fixes

  • Eliminated file open statements using non-standard form="binary" syntax and replaced with form="unformatted" access="stream" syntax required for portable handling of C binary files. These changes occurred in Ffowcs Williams and Hawkings data output routines necessary for acoustic propagation packages such as PSU-WOPWOP and ANOPP2. (f898adc8)
  • Corrected nondimensionalization for directional forces and moments in the {project_rootname}_sfe_hist.dat output file. (452caf81)
  • Corrected issue where specifying the reference temperature in Rankine resulted in incorrect conversion to Kelvin when using SFE. (ae30e9dd)
  • Added the surface tag and suffix of “_t” or “_q” for triangle and quad to surface names in fieldview writer. This makes the surface names in “fvuns” outputs unique. (b4fa35dc)

Version 14.0.2-16d1333—November 2023

The version 14.0.2 PDF user’s manual is available as NASA TM-20230004211.

Tested compilers and known issues

  • This version has been tested with Intel 2018 – 2019, GCC 10.2 – 12.2, MPT 2.25, and OpenMPI 4.0.1.
  • Intel 2020 compilers have a bug in the interpretation of the bind(C) attribute from as early as 2020.2.258(19.1.2.258 20200623) and FUN3D cannot build with them. A list of versions have been tested (see below). Intel 2021.3.0(2021.3.0 20210609) and 2022.0.0(2021.5.0 20211109) have been shown to be usable under MacOS.
    • 2020.1.216(19.1.1.216 20200306) works
    • 2020.2.258(19.1.2.258 20200623) bug
    • 2020.4.301(19.1.3.301 20200925) bug
    • 2021.3.0(2021.3.0 20210609) works
    • 2022.0.0(2021.5.0 20211109) works

Bug fixes

  • Fixed an allocation issue for EBV-related arrays when pushing to GPU. (1a067893)
  • Fixed issue where node IDs in massoud surface files are incorrect when generated from a serial simulation. (5806b9b1)
  • Fixed issue with Python binding that prevented execution of design optimization problems with Python. (08075e9e)
  • Fixed strong boundary condition issue for generic gas path for unlumped wall boundaries. (3a3f54a6)
  • Fixed a GPU initialization issue related to electrons in the cell-based viscous flux tetrahedral kernel. (982b02c2)
  • Fixed the non-smart Jacobian option (not the default smart option) for the generic gas path. (7664ddb1)
  • Fixed an issue that prevented rotational and/or translational motion from starting smoothly at the appropriate time offset specified by the user. Also enabled the user to specify a starting time and duration for the observer reference frame. (0f4f0a6b)

Known bugs

  • An isothermal wall should not abut an inflow boundary using the subsonic inflow total conditions boundary condition (7011).
  • Known issue related to Galilean invariance of adiabatic wall BCs for both perfect and generic gas cases with dynamic grids. Use of fixed wall temperature BC recommended for now.
  • The force coefficients Cx, Cy, Cz in {project_rootname}_sfe_hist.dat file are not nondimensionalized correctly. Divide the reported values by the reference area to get the correct values. The lift, drag, and moment coefficients in this file are properly nondimensionalized by reference area.
  • When the reference temperature is specified in Rankine, the temperature in SFE is improperly converted. When using SFE, specify the temperature and temperature units in Kelvin in the fun3d.nml.

Version 14.0.1-21c716f—May 2023

The version 14.0.1 PDF user’s manual is available as NASA TM-20230004211.

Tested compilers and known issues

  • This version has been tested with Intel 2015 – 2019, GCC 10.2 – 12.2, MPT 2.23 – 2.25, and OpenMPI 4.0.1.
  • Intel 2020 compilers have a bug in the interpretation of the bind(C) attribute from as early as 2020.2.258(19.1.2.258 20200623) and FUN3D cannot build with them. A list of versions have been tested (see below). Intel 2021.3.0(2021.3.0 20210609) and 2022.0.0(2021.5.0 20211109) have been shown to be usable under MacOS.
    • 2020.1.216(19.1.1.216 20200306) works
    • 2020.2.258(19.1.2.258 20200623) bug
    • 2020.4.301(19.1.3.301 20200925) bug
    • 2021.3.0(2021.3.0 20210609) works
    • 2022.0.0(2021.5.0 20211109) works

Bug fixes

  • Fixed integer type declaration bug in the surface mesh connectivity interface for aeroelastic motion using the Python extension module. (d786fd4)
  • Enabled stop.dat usage for GPU-based simulations. (bb2e6d9a)
  • Fixed issue with equilibrium air gas model volume/sampling output. (c0e7219b)
  • Updated shock sensor to be Galilean invariant. (2abf9fe0)
  • Fixed issue related to smooth heating output across patch boundaries. (a8978901)
  • Fixed minor issue related to static temperature output in component sampling for generic gas cases. (16ecf11e)
  • Fixed issue related to generic gas STVD inviscid flux scheme using “kw-sst” coupled turbulence model on GPUs. (b6eb7abb)
  • Re-enabled GPU capabilities for NVIDIA devices newer than A100. (70aeb231)
  • Fixed regression related to non-default least squares gradient option for turbulence models. (f2a50d83)
  • Addressed issues when linking libraries with gfortran 12. (902428d6)
  • Build standalone YOGA executable for construction of composite mesh. (90e47590)

Known bugs

  • An isothermal wall should not abut an inflow boundary using the subsonic inflow total conditions boundary condition (7011).
  • Known issue related to Galilean invariance of adiabatic wall BCs for both perfect and generic gas cases with dynamic grids. Use of fixed wall temperature BC recommended for now.
  • Known issue where node IDs in massoud surface file are incorrect when generated from a serial simulation. Generation of massoud files from parallel runs is recommended for now.
  • The current build infrastructure using GNU Automake 1.61.1 checks for the Python version number using only the first 3 characters in the version string. As a result, configurations are limited to support of Python 3.9 and below. For example, Python 3.10 will be mistakenly interpreted as 3.1 due to this 3 character limit. A workaround is available to those who have GNU Automake >= 1.17, GNU Autoconf >= 2.63, and GNU Libtool >= 2.4.6 available on their systems. Those can run bootstrap in their FUN3D source tree to re-generate the configure scripts with support for Python > 3.9.
  • The 14.0.1 manual refers to the “ramped” smoother_type in SFE as “uniform_ramped” which is not supported by the input parser. Use “smoother_type() = ramped” to activate this feature.

Version 14.0-d03712b—February 2023

The version 14.0 PDF user’s manual is available as NASA TM-20220017743.

Tested compilers and known issues

  • This version has been tested with Intel 2015 – 2019, GCC 10.2, MPT 2.23 – 2.25, and OpenMPI 4.0.1.
  • Intel 2020 compilers have a bug in the interpretation of the bind(C) attribute from as early as 2020.2.258(19.1.2.258 20200623) and FUN3D cannot build with them. A list of versions have been tested (see below). Intel 2021.3.0(2021.3.0 20210609) and 2022.0.0(2021.5.0 20211109) have been shown to be usable under MacOS.
    • 2020.1.216(19.1.1.216 20200306) works
    • 2020.2.258(19.1.2.258 20200623) bug
    • 2020.4.301(19.1.3.301 20200925) bug
    • 2021.3.0(2021.3.0 20210609) works
    • 2022.0.0(2021.5.0 20211109) works

Enhancements

  • Added optional low-Reynolds-number enhancement to SA, turned on by setting sa_lre=.true. in namelist spalart (from Spalart and Garbaruk, AIAA Journal, Vol. 58, No. 5, May 2020, pp. 1903-1905); yields SA-LRe. (edf10210)
  • Added an option to the prescribed motion of aeroelastic modes that allows a nonzero offset with periodic motion, moddfl=1. (8c2b04e5)
  • Majority of actuator disk analysis capabilities (not adjoint) have been ported to GPU execution. See User Manual for details. (fb3db940)
  • Frequency at which history and forces files are written is now decoupled from writing of restart files. See history_write_freq input in code_run_control namelist. (b0afa8b4)
  • Utility to split mixed-element grids into tetrahedra can now handle 64-bit integers. (757dc0a0)
  • Compressible perfect gas flows may now be initialized with rotational flow. (2a8cb8a3)
  • SA-DES and SA-neg-DES simulations may now be restarted interchangeably. (8446336c)
  • An ability for the user to provide an external Tecplot surface file specifying transition locations is now available. See use_file_values in &three_d_trans namelist. (81468263)
  • Enable the 7201 boundary condition for GPU-based execution. (b12b92f7)
  • Added generic gas GPU support. See manual for details and supported options. (94ff846)
  • Added incompressible GPU support. See manual for details and supported options. (c385c404)
  • HLLE++ inviscid flux is available as &inviscid_flux_method flux_construction = 'hlle++'. (1fe221f)
  • Added grid motion and aeroelasticity support for generic gas. (c4b8dae)
  • Added various boundary conditions and flux options for GPU-based execution (see manual for list of currently supported options).
  • Added SA-Catris DES option using &spalart des. (94ff846)
  • Added additional visualization options for generic gas (e.g., 'cp', 'mass_fr_i', 'mole_fr_i', 'gamma'). (2344039)
  • The wall distance can be read from a .solb file for grids that exploit the built-in wall distance calculator approximations. See &special_parameters distance_from_file = '' namelist documentation in user manual. (70f0a428d3)
  • incompressible, compressible, and generic solutions can be read from a .solb file. See &flow_initialization import_from = '' namelist documentation in user manual. (343d726dca)
  • Grid adaptation on no-slip walls is available with a new workflow that includes geometry and improved grid automation. There are new options in the f3d script. See Chapter 8 of the user manual for details. (bee5779b99)
  • The Nishikawa limiter is available as &inviscid_flux_method flux_limiter = 'nishikawa' , see namelist documentation in user manual. (27d308fc12)
  • Added the Stabilized Finite Element (SFE) solver, a streamlined upwind Petrov-Galerkin discretization. Supported modes for SFE include steady flow analysis and linearized frequency-domain analysis. Includes Surreal library for expression-templated automatic differentiation. See the manual for details.
  • The Sparse Linear Algebra Toolkit (AIAA 2020-0317) provides a GMRES implementation suited for real and complex valued linear systems with support for MPI and MPI+OpenMP parallelizations.
  • Added an edge-based viscous (EBV) method for the FUN3D viscous kernel that includes viscous fluxes, diffusion in turbulence and chemistry models, and the corresponding Jacobian terms. The EBV method provides a multifold speedup of all viscous-kernel computations and accuracy similar to the default cell-based viscous method of FUN3D. The EBV method is activated as &code_run_control ebv = .true. , see the namelist documentation in the user manual for references. (b13fef2)
  • Added ability to call the geometric partitioners available in Zoltan. (18ffa68f)
  • Added 'sst' GPU support. (40ba27d6)
  • Added generalized inflow turbulence with 'boundary_turbulence'. See manual for details. (6104b276)
  • Added simulation timing commands: ('time_timestep_loop' and 'estimate_remaining_time'). (ffd230e4)
  • Added Sutherland constant option for perfect gas flows in the namelist: ('sutherland_constant').
  • Added experimental decoupled turbulence model support for generic gas flows (see 'use_decoupled_turbulence_gen'). (135831d7)

Output Changes

  • When an actuator-disk model is used and Write Soln (rotor.input) is specified with a nonzero value, pairs of Plot3D disk loading data files will be output at the specified frequency and also at the end of the simulation. Integrated disk forces and moments for each rotor will be summarized to the [project_rootname]_ad_loading.dat file. (b088594)
  • When append_timestep_to_restart_name is set to .true. in the &code_run_control namelist, restart filenames will contain the current timestep index as a suffix. This prevents the loss of existing restart data should the file system fail while writing restart data. The user must manually remove the integer suffix prior to subsequent runs when intending to restart from this data.

Input Changes

  • The order of the compiler search has changed. In v13.7 there was no specified ordering for the C compiler search, therefore, gcc was assumed. This is environment-dependent by default, but the default search order for C compilers is now: icc, gcc. You can override this with the “CC” variable.
  • Precision of floating-point data contained in binary Tecplot output files for volume, boundary, and sampling options may now be controlled using the input isdouble in the nml_global namelist. (62f1a53e)
  • Increased the maximum number of aeroelastic modes to 200. (8d6a3c36)
  • Eliminated the unused input variable body_frame_forces from the &body_definitions namelist. (bd5acf50)
  • The grid adaptation library meshsim has been removed. (44883a8c25)
  • The filenaming convention for ugrid mesh files containing 64-bit integers has been changed from the ugrid64 suffix to conform to the AFLR convention that specifies an “l” after the real datatype identifier. For example, the suffix .lb8l.ugrid would indicate a little endian ordering in C binary/Fortran stream form with 8-byte real variables and 8-byte integers. (9e57281b)

Bug fixes

  • Fixed the interface of calling TecIO library with ambiguous 4/8-byte data, which gets error messages from GCC 10. Previous version without the fix can degrade the errors to warnings by using -fallow-argument-mismatch option in FCFLAGS. (e27adad1)
  • Errors in shape sensitivities provided by adjoint-based sensitivity analysis for the objective functions identified by the keywords ad_x_force, ad_y_force, and ad_z_force have been corrected.
  • Fixed a segmentation fault that occurred when specifying number_of_points and selecting a line sample. (0f3624f4)
  • Corrected sampling behavior interaction with the duration_limit_in_minutes. The final samples (frequency = -1) will now be written when the limit is reached. (08cafb64)
  • Prior versions would not zero out the value of simulation time when using on_nohistorykept for the restart_read input. This has now been fixed. If providing a series of unsteady transform matrices describing mesh motion, the time stamp associated with each matrix must account for this accordingly.
  • Corrected a subtle bug related to the pressure limiter. (ffb3cb6d)
  • Fixed an issue for incompressible forces which swapped reference chord and span lengths. (0f67ee0c)

Known bugs

  • An isothermal wall should not abut an inflow boundary using the subsonic inflow total conditions boundary condition (7011).
  • GPU libraries were inadvertently built without necessary support for execution on NVIDIA devices other than V100 and A100.
  • The file stop.dat used for premature solver shutdown is ignored for GPU-based simulations.
  • Equilibrium air gas model volume/sampling output fails.
  • Shock sensor for HLLE++ typically used for high-speed cases is not Galilean invariant – can cause issues for large relative grid speeds not typically encountered in aeroelasticity.
  • heating_from_integral=.false. is not supported on GPUs.
  • Regression related to smooth heating output across patch boundaries. Boundary patches should be lumped or heating_from_integral should be set to .false. as workarounds.
  • Known issue related to Galilean invariance of adiabatic wall BCs for both perfect and generic gas cases with dynamic grids. Use of fixed wall temperature BC recommended for now.
  • Issue related to integer declaration in Python interface for getting surface connectivity.
  • Adjoint solver does not correctly terminate upon use of flow_solver='sfe'.
  • Known issue where node IDs in massoud surface file are incorrect when generated from a serial simulation. Generation of massoud files from parallel runs is recommended for now.
  • Bug in generic gas STVD inviscid flux scheme using “kw-sst” coupled turbulence model on GPUs.
  • Regression related to non-default least squares gradient option for turbulence models.
  • Issues when linking libraries with gfortran 12.

Version 13.7-b3b47a4—February 2021

The version 13.7 PDF user’s manual is available as NASA TM-20205010139.

Tested compilers and known issues

  • This version has been tested with Intel 2015 – 2019, MPT 2.23, and OpenMPI 4.0.1.
  • Intel 2020 compilers have a bug in the interpretation of the bind(C) attribute from as early as 2020.2.258(19.1.2.258 20200623) and FUN3D cannot build with them. A list of versions have been tested (see below). Intel 2021.3.0(2021.3.0 20210609) and 2022.0.0(2021.5.0 20211109) have been shown to be usable under MacOS.
    • 2020.1.216(19.1.1.216 20200306) works
    • 2020.2.258(19.1.2.258 20200623) bug
    • 2020.4.301(19.1.3.301 20200925) bug
    • 2021.3.0(2021.3.0 20210609) works
    • 2022.0.0(2021.5.0 20211109) works
  • When compiling with GCC 10 and TecIO libraries, there are error messages on argument mismatch. A workaround is to compile with adding the flag -fallow-argument-mismatch to FCFLAGS. The issue has been fixed post v13.7.

Enhancements

  • First general release of GPU-accelerated capability for compressible perfect-gas flows. Please see new chapter in the User Manual describing hardware requirements, installation details, and usage.
  • A strong solver based on a hierarchical adaptive nonlinear iterative method (HANIM) has been implemented for primal flow computations aiming to improve the robustness and efficiency of the standard preconditioner-alone solver. Please see the User Manual for usage of the HANIM solver.
  • An extended blade-element based actuator disk model has been made available through specifying the particular load type in rotor.input. This actuator disk model supports radial distributions of blade chord length, twist, and blade element properties, as well as the use of C81 airfoil performance tables to account for flow compressibility. Adjoint-based sensitivity analysis is fully enabled for this model, where the blade chord length and twist at specified radial stations and the collective pitch can be used as additional design parameters in conjunction with other design parameters such as disk orientations, positions, radius, tip speed, and etc. See AIAA 2020-2632 and more details in the User Manual.
  • Added ability to optionally linearize meanflow QCR2000 terms. (cfb84351)
  • Added ability to restrict Tecplot volume output to subvolume regions prescribed by simple user-defined geometries. (0ca76eaa)
  • Added ability to tail_hist_stats utility to emit CSV format (063dd1707f) and perform limited Euler rotations before computing statistics. (384fc54830)
  • Added ability to compute viscous terms using edge-based method for tetrahedral cells. (d459d96d1a)
  • Added options to write and read volume mode shapes from disk when using the modal mesh deformation option. For multiple runs of the same model with the same number of partitions, reading the volume mode shapes that were written during a previous simulation will skip the initial mesh deformations. (195fe5ac)
  • Reintroduced a low-Mach preconditioning option after being removed several releases ago. See the &inviscid_flux_method namelist. (35cce74f)
  • Added entropy isosurface option to &sampling_parameters. (812eb0d3)
  • Added additional analyses for generic gas simulations to the component performance module. Output and formatting changes in the [project_name]_stream_info.dat file. including expanded output of forces in Cartesian and rotated coordinate systems, gas constant and ratio of specific heats used. (ccf69595) (3dffca8b) (4d463735) (0e0cb937) (4ecaba11) (26ffe631) (335bcc61)
  • Added generalized polyhedron geometry to tree grove modeling. (59c3d59d) (ed67b8ae)
  • Added component-by-component corrected mass flow rate output to the [project_name]_stream_info.dat file. (beefe7f8)
  • Added gamma and molecular_weight input options to the &reference_physical namelist. The default values are for perfect gas. (e5e68966)
  • Added incompressible logic to the component performance analysis package. (06ee69a5)
  • Improved the thin and thick passive filter models, including adding permeability, overlapping filter shapes, and incompressible formulations. (04d06a3f) (6eb19348) (1332dd9c) (78b51d58) (0a35e4ec)
  • Added modifying the back pressure using the average Mach number at a sampled plane to the boundary condition controller module. Original implementation was performed by Makoto Endo (GRC-LTC0). (1d537121)
  • Included the high-energy path of fun3d (eqn_type = ‘generic’) in the primary release for this version. Users no longer have to request the high-energy version separately, or complete a separate Software Usage Agreement (SUA) specifically for the high-energy version.

Output Changes

  • Added dimensional and non-dimensional timestep output to the [project_name]_stream_info.dat file. (70122de5)
  • Added volume output of total pressure to generic gas path. (d6d2cfd2)
  • Expanded output of the [project_name]_fm_[component_name].dat file to include y- and z-momentum flux terms. (38bb7deb)
  • Added diagnostic output to the header of the [project_name]_stream_info.dat file showing the code version and number of processors used. (a18560fb)

Input Changes

  • The f3d (mesh adaptation driver) script default iteration_steps was changed to the multiscale metric adaptation. Recover the previous default with `def iteration_steps; flo; adj; rad; end` (cd00524e)
  • The functionality of the aeroelastic modal solver’s gforce0 option was split into two separate inputs. The previous behavior applied a positive gforce0 perturbation on the first step and a negative gforce0 offset for the remainder of the simulation. The new behavior of gforce0 is to only apply the positive perturbation on the first step. A new input gforce_static has been created to add a generalized force offset to all steps. (8a0389a4)
  • The logical control variable ‘mixed’ which forces tetrahedral grids to be processed as general element types is now available through the &code_run_control namelist. (6646dc60)
  • The input ‘use_64bit_partitioning’ used to control the precision of the FUN3D interface with ParMETIS is no longer available as an input in the &partitioning namelist. FUN3D will now detect the appropriate precision based on how ParMETIS was built and installed.
  • A new utility which can be used to compress the patch numbering present in a grid file has been added in utils/. Also see note under Known Bugs below.
  • The parameter list_forces in the the &component_parameters namelist is no longer required. This parameter is set by the code when the parameter number_of_components is greater than zero. (ad922cdc)
  • The name of a non-reflecting boundary condition 5060 has been changed from fwm_nrbc to back_pressure_nrbc. (65def1c760) (44224ba30)
  • The nomenclature of sampling the resolved Reynolds stresses has been changed. For example, a request for t12_sgs is now t12_res. tavg_header_version must be set to 2 to have gathered the correct long term history of the instantaneous velocities. (caeac069)

Bug fixes

  • Fixed occasional stalling of the code in the wall distance calculation when recompute_turb_dist = .true. for moving grid cases. (c633e24f)
  • Fixed subtle error in tetrahedral flux jacobians for simulations using QCR turbulence modeling strategy. (e1c4b739)
  • Fixed the missing input patch_center in the &boundary_conditions namelist as documented in the User Manual. (9f678cb9)
  • Included the file multiplydoubles.c, which was omitted from the 2D grid tools suite in previous releases. (5caa63a8)
  • Fixed the tail_hist_stats utility erroneously combining two variables into one. (5034caae8a)
  • Fixed output typographic error in the units of the viscous forces listing in the [project_name]_stream_info.dat file. (db191e66)
  • Fixed an error in the logic for detecting regions of low total pressure in the ARP-1420 fan distortion module. (4b9a3d43)
  • Fixed element based boundary condition face weights for prisms in 2D mode. (9a5ad741)
  • Fixed initialization of adiabatic and radiative equilibrium wall boundary conditions for time-dependent generic gas flows.

Known bugs

  • Use of use_cuda_mpi=.true. in the &gpu_support namelist with MPT (also known as HPE MPI) is discouraged at this time. It may function correctly combined with the environment variable MPI_DEFAULT_SINGLE_COPY_OFF=true and use_cuda_pin=.false. in the &gpu_support namelist.
  • Preprocessing has a known issue if surface patch indices exceeding the total number of surface patches are present in the original mesh file. A utility has been provided in the utils/ directory which can be used to renumber the patch numbers in a grid to eliminate this problem.
  • Adjoint-based sensitivity analysis for shape sensitivities of objective functions identified by the keywords ad_x_force, ad_y_force, and ad_z_force have a known error in this release.

Version 13.6-717bd48—November 2019

The version 13.6 PDF user’s manual is available as NASA TM-2019-220416.

Enhancements

  • Changed the default value of recompute_turb_dist to .true. in namelist &global. This causes the distance function needed for turbulence models to be recomputed for each time step for moving-grid cases. The exception is for single (non-overset) rigid moving grids, as there is no distance change with rigid rotation/translation of a single mesh. This parameter has no effect for static grids. To revert to previous behavior, explicitly set recompute_turb_dist = .false. (b2ec6675)
  • For DES models, the DES length-scale parameter is now recomputed when the mesh deforms (which potentially alter the local mesh spacing). (9aaf50c3)
  • Changed the behavior of freeze_limiter_iterations in namelist &inviscid_flux_method for time-dependent flows (no change in behavior for steady-state simulations). For time-accurate simulations, the value of freeze_limiter_iterations is now associated with the subiteration number rather than the time-step number. (774a9a4a)
  • Improved the robustness of grid mirroring for cases in which the plane to be mirrored about (x=0 or y=0 or z=0) is not quite at an exact value of zero. (b00648f0)
  • Improved the robustness of mesh deformation for some cases by allowing “multistep” mesh deformation. See the manual for details on choosing input parameters deform_from_initial_mesh, deformation_substeps, and use_substeps_each_step for guidance and cautions. (6700f4c7)
  • Added modal decomposition of mesh deformation option for internal aeroelastic cases. Requires additional memory but reduces computational cost. The idea was suggested by Jamie Akkala. (abce3b0e)
  • Correctly set initial wall turbulence values for all turbulence models. Some models (e.g. SA-DES) had initial values set freesteam levels at solid walls. (9c8fcb62)
  • Added the option to use the relative Mach when setting the adiabatic wall temperature (relative_vel_twall_adiabatic = .true. in &body_definitions). Required to get exact match in results if comparing a moving-grid case with a comparable staic-grid case (e.g. static mesh in Mach 0.8 flow vs. mesh translating at Mach 0.4 into a Mach 0.4 flow, such that the relative Mach is 0.8). Mostly for verification purposes, as the effect is generally small for modest Mach numbers. (3b6ea248)
  • Added a boundary condition controller for total pressure to attain a requested massflow in to the computational domain. (bed3f162)
  • Added the option to set the precision of volumetric output when using the export_to=”native” option. It can be set to either single or double precision. The default is single. (f63e4594)
  • Added adjoint-based sensitivity analysis capability for steady flows involving actuator disks with constant loading distributions. This includes a new power-based objective function for any actuator disks present. Also includes the ability to group actuator disks such as propellers installed on both sides of a vehicle. See AIAA-2019-3681. (06f0d3b4)
  • Added adjoint objective/constraint functions based on the net sum of forces acting in the x-, y-, and z-directions, including a vehicle weight term. See AIAA-2019-3681. (06f0d3b4)
  • Provided user input to set SNOPT optimality tolerance. (06f0d3b4)
  • Implemented the exact linearization of the LD-Roe flux function. (d4eb6582)

Output Changes

  • For overset meshes, changed the default output variable list to include imesh (the component-mesh id for each grid point). (52d54696)
  • Added extraction of Cartesian gradients for all 5 primitive variables to the sampling_output namelist. (bc3ec0d6)

Bug fixes

  • Fixed namelist cut-and-paste error in sampling_parameters namelist for specification of a cone sampling geometry. (a6f399a5)
  • Corrected a very minor error in the dissipation associated with the LD-Roe flux function. (d4eb6582)

Version 13.5-d36c511—July 2019

The version 13.5 PDF user’s manual is available as NASA TM-2019-220271.

Bug fixes

  • Fixed seg fault when adapting grids with turbulence models other than SA. (3eee1873)
  • Fixed gust velocity at walls in gust simulations based on the field velocity method. (c30551bd)
  • The complexity of the frozen portion of a grid to be adapted is estimated as half the number of frozen vertex. The frozen complexity is subtracted from the complexity request to scale the metric. (41c91ac5)
  • Fixed bug in specifying non-zero initial conditions for the 6DOF library. (28b3b664)
  • Fixed dimensions of several output parameters when using &component_parameters. (480c0c47)

Input Changes

  • The &composite_overset_mesh namelist in moving_body.input is deprecated. This namelist contained only one element, input_xml_file. This element is now part of the &overset_data namelist in the fun3d.nml file. (43c1faf1)
  • The body_frame_forces element of the &body_definitions namelist in the moving_body.input file is now deprecated; see information in the Output Changes setion below.
  • The &body_transform and grid_transform namelists for static-grid transforms (transforms applied once at the beginning of the simulation) now allow transforms to be specified via Euler angles. (32fe5d84)
  • A user-defined body axis may now be specified for reporting forces and moments for non-moving grids. Specification of a body axis will cause an additional file, [project]_body_frame.forces, to be output in addition to the standard [project].forces file. Forces and moments in the new file will be with respect to the specified body axis; Forces and moments in standard file are with respect to the Cartesian axes defined by (implicit in) the input grid. This body axis is specified via the &force_moment_integ_properties namelist, and may be specified as a rotation vector (angle and axis), Euler angles, or a transform matrix. (32fe5d84)
  • A user-defined body axis may now be specified for reporting forces and moments for moving grids; a different axes may be specified for each body. Specification of a body axis will result in a change to which body axis the data in the _body.dat files (see Output Changes below) is referenced to. Without a user-specified axis, the default body axis will be defined by (implicit in) the input grid; a user-specified axis will override this default. By way of example, a typical store separation simulation would start with a grid in native FUN3D orientation: +X “aft”, +Y “right spanwise”, and +Z “up”. Body-frame data will be reported in this body axis by default. However, a traditional flight-dynamics reference frame would have a body axis with +X “forward”, +Y “right spanwise”, and +Z “down”. The user-specified axis may be defined so that output is relative to the flight-dynamics reference frame rather than the native FUN3D body axis. A body axis is specified via the &body_definitions namelist in the moving_body.inpt file, and may be be specified as a rotation vector (angle and axis), Euler angles, or a transform matrix. (32fe5d84)

Output Changes

  • When performing moving-grid simulations, there are significant changes to output files. Data in now always output in both the inertial frame and the body frame. In addition, aerodynamic forces and moments are also output relative to the wind axis. In the wind frame, the relative angle of attack, yaw angle, and Mach number are reported. Files in the body frame have file names that contain the extension _body (e.g. PositionBody1_body.dat); files in the wind frame have file names that contain the extension _wind (e.g. AeroForceMomentBody1_wind.dat); files in the inertial frame have no additional extension (e.g. VelocityBody1.dat) (e984b3f7)
  • If the temporal-error controller is not used, the estimate of the temporal error is no longer output. (5563be2b)

Enhancements

  • Static-grid transforms can now be used with moving bodies. (09e0c1a9)
  • A starting level, inflow_pt_start, was added to the total pressure ramping of boundary conditions 7011 and 7021 ( subsonic inflow-total conditions ). (c7e16250)
  • Massflow matching between engine components was added as an engine cycle choice. Either the inlet massflow can be used to drive the nozzle flow, or the nozzle massflow used to drive the inlet flow. (d7fb137d)
  • The alpha driver was updated to allow thrust effects from an engine to be included in the lift coefficient used to modify the flow angle of attack. (d447c359)
  • The input to the Schlieren capability in &sampling_parameters was updated to avoid being blinded by walls for creating the Schlieren image. (255c4530)
  • Added the ability to define the ARP-1420 rake input using a radius and center location instead of having to define each probe point individually. (abc307de)
  • A second inlet distortion metric (GE) was added to the &component_parameters distortion analysis output. (51bedef5)

Version 13.4-0a6bd8b—Nov 2018

The version 13.4 PDF user’s manual is available as NASA TM-2018-220096.

FUN3D version 13.4 now requires the build of shared objects for some capabilities. Previous versions used only static libraries. As such, the source is compiled as Position-Independent Code (PIC) for use in both shared and static libraries by default. This will increase the compile time and also may affect the performance slightly (we observed roughly 4% penalty in some cases). Users can configure using --disable-shared to prevent the building of shared libraries and the generation of Position-Independent Code. This will retain performance and cut the build time in half.

Input Changes

Output Changes

  • The output from the plot_modes option in &aeroelastic_modal_data has changed to reflect the fact that the modal surfaces are now partioned by default. This requires that each processor writes out the portion of the mode shape that it has. Previously, a single file per mode was written. The contents have also changed: the first x,y,z triplet now has the mode shape already added to the undeformed surface; the second triplet is the undeformed surface, and the third triplet is the mode shape. Old output files corresponded to the current second and third triplet – to visualize the mode shape the triplets needed to be added together in Tecplot. That is no longer necessary. (54460b301)

Enhancements

  • Added an option for time-dependent, articulated-rotor cases that allows the user to specify the time step in terms of the rotor azimuthal change per time step. For example, to specify a time step corresponding to 1/2 degree per time step, input a value of time_step_dpsi = 0.5 in namelist &nonlinear_solver_parameters. If time_step_dpsi, is specified, the value of time_step_nondim, if specified, is ignored. Rotorcraft only. (c2ffa9161d)
  • Added an option to allow the user to control whether slice-related data is appended to on restart. Set slice_append_on_restart = .false. in namelist &slice_data to not append on restart, instead overwriting the existing data with data from the current run. The default is .true., append current data to any existing data when restarting. (0a881ed21b)
  • Modified the slicing algorithm to be more robust in situations where the desired slice location sits on a surface point or aligns with an edge of a boundary face. (09d73ccc719)
  • Added QCR-2013 non-linear stress option for turbulence. (caaee3a9)
  • Added the modulus of the symmetric, S, and antisymmetric, W, velocity gradient tensors to the &sampling_output namelist. (a5fa06ec)
  • Added the Python interface for steady and unsteady aeroelastic analysis and adjoint-based sensitivities. (6ebafb6f)
  • Added Strelets Detached Eddy Simulation (DES) and Woodruff Model Invariant Hybrid Reynolds Averaged Navier Stokes Large Eddy Simulation capabilities for turbulent flows. (a9d62124)
  • Added spatial averaging capabilities for turbulent flows. (d9fac3a2)
  • Added turbulent inlet profile and turbulent fluctuations for boundary condition. (ed802277)
  • Added the namelist parameter inflow_pt_start in &component_parameters to allow specification of a starting point for total pressure ramping with the 7011 and 7021 boundary conditions. (6727f634)

Bug fixes

  • Corrected the format of a read statement in utils/Rotorcraft/extract_sectional_forces.f90 to reflect an increase in output precision. (dfbcd25)
  • Fixed mpi gather error when multiple ARP-1420 analyses were requested in the &component_parameters namelist. (2fa4eaa3)
  • Corrected the normalizations used in the force and moments tracked in the &component_parameters, where some parameters were divided by the reference area and dynamic pressure twice. (e67b68c2)
  • Re-established the call to the transformation-of-body-forces subroutine when the user requests a different moment center and/or reference area for grouped components in the &component_parameters namelist. (18539b2e)
  • Fixed a bug in the static grid transform option pure scaling was requested. (9c464a7)
  • [project_name].forces is now written once every restart_write_freq and at the end of an execution. The file was writen multiple times, which interacted poorly with file systems. (305bbc5)
  • Fixed the integrator equation for the one-point boundary condition controller. (b0ef781c)
  • Fixed the logic for calculating Reynolds stresses for 1-equation turbulence models. A conditional testing for the QCR stress option left out the choice of using a 1-equation model without any QCR added at all. (e9934efd)
  • Refactored the logic in sampling_parameters so that when spatial averaging is not requested, 4 dummy sampling geometries are not allocated and carried through the sampling infrastructure. (57ad64a1)
  • Fixed the re-dimensionalization of the coefficient form of the viscous and pressure forces being bookkept in &component_parameters. A previous commit that preserved the coefficient form of the force and moments for solid boundaries, was not properly accommodated later in the module where the force and moment data were dimensionalized for multi-unit output in the [project_name}_stream_info.dat file. This change displays the proper units in the output. (0a6bd8bb)

Version 13.3-5dad7cc—Apr 2018

The version 13.3 PDF user’s manual is available as NASA TM-2018-219808.

Input Changes

  • viscous_solid boundaries can now have flow-through forces calculated via adding porous_bc(ib) = .true. to the &boundary_conditions namelist. Additional information can be found in the &boundary_conditions input description.
  • Wall function inputs have been moved from the &turbulent_diffusion_models namelist to the &boundary_conditions namelist. (f89c9e6001,78ff05657b)
  • The mass flow integration option in the &sampling_parameters namelist has been moved to the &component_parameters namelist. (803fd53f5)
  • The tightly_couple option in the &nonlinear_solver_parameters has been removed. It was only valid for the sa-neg perfect-gas turbulence model. (e54af48dd7)
  • A new namelist, &shuffle_generic, has been added, which allows restarting from flow solutions with a different number of species density, energy, and turbulence variables in the high-energy gas path.
  • Setting mass_fraction to zero in the &flow_initialization namelist will now throw an error in the high-energy path. (22e66e0f)
  • An fatal error is now thrown when the flux_construction = 'stvd' option is used in the perfect-gas path, while trying to run turbulent flow. That option only supports turbulent flow if running the high-energy path, otherwise it only supports laminar or inviscid flow. (74f5f0a4)

Output

  • Component performance summary output is improved in [project_name]_stream_info.dat when the allow_flow_through_forces = .true. and list_forces = .true. namelist parameters are used.
  • For time-accurate simulations, the “time step” referred to in screen output now corresponds to the aggregate time step, i.e., the number of time steps from the start of the simulation; the “current step” corresponds to the time step of the current run. The stop.dat file governs code termination by the “current step” value (as it always has).

Enhancements

  • The linearizations used in the four-equation turbulence model were modified to improve stability in the test cases. (75fd09d6f4)
  • The turbulence equations solid wall boundary condition routine was refactored and should show performance improvement over the previous release. (7818b0521a)
  • Compatible with HELIOS Version 8 (c158560c046)

Bug fixes

  • Fixed several dimensionalization errors in the component performance analysis and output routines. Also updated makefile for dynamically loaded boundary conditions. (8b5f09b67b, 244aae9e)
  • Fixed uninitialized memory read in component performance analysis. (b645c01)
  • Fixed a bug in sampling_gather where lambdap was not initialized. Also, removed the addition of prior_iters from several sampling output statements since time_step now has prior_iters already added to it. (1b1af38c)
  • Fixed a bug in the calculation of static and total temperature in component performance analyses. (171a70e245)
  • Fix average velocity calculation in the component_parameters output file [project_name]_stream_info.dat. (92027a2117)
  • Fixed a bug in the high-energy path, where various pressure forces were not accounted for flow-through boundary conditions (such as 7021). (eea5b36f)
  • Fixed a bug in code run control via the stop.dat file. If the stopping iteration set in stop.dat was larger than the number of time steps / iterations set in fun3d.nml, a memory-bounds error would occur. (77d694afd15)
  • Fixed a bug in the modal structural solver run control via the stop.dat file. If the stopping iteration was set < 0 (signaling to the flow solver to stop “immediately” without writng a restart file), the modal solver would nonetheless write its restart file. This caused the restart files from the flow solver and the modal solver to get out of synch. (77d694afd15)

Version 13.2-e3f5937—Oct 2017

The version 13.2 PDF user’s manual is available as NASA TM-2017-219661.

Input Changes

  • When using “fake bodies” in moving grid cases, the component mesh id for ALL moving bodies must be explicitly specified via the new input variable mesh_id. Fake bodies are typically only employed for time-dependent, moving-body design cases.
  • The flux_construction = ‘stvd’ is incompatible with eqn_type = ‘compressible’ if turbulence is engaged. This has always been true, and the code will now throw an error if that combination of options is selected.
  • The eii_limit and print_eii_limit parameters, while not documented, are now settable in the &update_limits namelist.

Output Changes

  • Changed the output from an alpha_sweep to include all three Cartesian force components and all three Cartesian moment coefficients; also cleaned up some output of questionable usefulness. (c8816f2)

Enhancements

  • Viscous perfect gas simulations using mixed element meshes should exhibit a 10-20% performance improvement over the previous release.
  • The “aehist” files from the modal structural solver are now entirely reproduced from data in the [project]_modal_structure.restart file. Thus, the user only needs to make sure to retain this restart file (along with the FUN3D restart file), and not the individual aehist files (of which there can be many). (72a2fd4)
  • The adapt_feature_scalar_form = 'none' in &adapt_metric_construction namelist creates a metric formulated to control interpolation error in the Lp norm, where p=2. Previously, the Linfinity norm was used. (4e9e911)
  • The user may now set the tolerance used to find the mapping between fluid points and structure (mode shape) points for cases where the default tolerance is too strict. (c20fa8a)

Bug Fixes

  • Fixed several bugs in the alpha_sweep option regarding alpha_switchbacks to make the switchback work as intended. (c8816f2)
  • Fixed two significant bugs in the modal structure library that were introduced in 13.1 (e010818)
  • Fixed a restart design flaw in the modal structure library in that the [project]_modal_structure.restart file was only written at the end of a run. Thus, if a run died unexpectedly for some reason, FUN3D would have periodically written its restart file, but not the modal solver. With a mismatch in restart data, the simulation could not be restarted. The fix entails writing a [project]_modal_structure.restart file whenever FUN3D writes its restart file. (72a2fd4)
  • Fixed a bug in which the boundary family name was lost when mirroring a grid. As a result, the family names were not reflected in the [project].forces file. (de950e7)
  • Fixed a memory leak in chemical source term jacobian, for generic gas path. This bug was introduced in 13.1 (bd837bd)
  • Fixed error in thermal source term jacobian for generic gas path. This bug was introduced in 13.1 (d9f4399)
  • Fixed error in edge-based viscous flux closure, where some nodes were not properly treated if running in parallel (7047ecb4)

Version 13.1-105cdae—Mar 2017

The version 13.1 PDF user’s manual is available as NASA TM-2017-219580.

The 2017 version of the Intel compiler is known to produce incorrectly executing code. It should be avoided if possible. Our continuous integration tests examine Intel versions 2013.4.183, 2015.2.164, 2016.0.109, and 2016.3.210 (other versions may function).

Input Changes

  • The untangling_iters has been added to the &elasticity_gmres namelist. The default value now disables untangling, which is rarely helpful in practice. Setting untangling_iters=3 will recover previous default behavior. (2850b1)
  • The parameters grefl, uinf and qinf in the &aeroelastic_modal_data namelist (in moving_body.input) have been changed to scalar values; previous versions required these inputs for each aeroelastic body. The names of the available time_integration_scheme have changed. The traditional predictor-corrector scheme remains the default, but is now referred to as PC_2ndorder. The second order backward-difference scheme is now referred to as BDF_2ndorder. See the manual for all options. (2653dbd)
  • The command line option --elasticity has been removed – now input as elasticity in the &elasticity_gmres namelist; see the manual for additional input changes for &elasticity_gmres. (12f1145)
  • The command line option --reduce_shape_change has been removed. (a34067c)
  • The command line option --plt_tecplot_output has been added. This option sets the binary Tecplot output to the old .plt format if FUN3D has been compiled against the new standard TecIO library. It is invalid if compiled against TecIO-MPI. (af2a578)

Output Changes

  • The restart data for the modal/linear structural dynamics solver is no longer held in the FUN3D restart file. A separate file, [project]_modal_structure.restart is now written/read, and the user must ensure that this file is visible in the run directory, in addition to the usual [project].flow file. (83691c8)
  • The time output from the modal/linear structural dynamics solver has been changed to dimensional output (e.g. time is now in seconds). The generalized acceleration has been added to the list of output variables. (62de0ea)
  • The convergence history of the linear elasticity solver that is written to standard output has changed slightly and gained additional information. (895f772)
  • The --make_tets command line option has been eliminated. A separate utility code called aflr3_make_tets to convert AFLR3 mixed-element meshes to tetrahedral meshes is now provided. (e96c72a)

Enhancements

  • The 'szplt' option was added to export_to option of &volume_output_variables to produce a single image tecplot data file. This requires configuring FUN3D with TecIO-MPI library. (2d9838e)
  • A new objective function for adjoint-based design using inlet fan distortion has been implemented. See manual for details. (61d55f0)
  • For coupled CFD/CA rotorcraft simulations, an algebraic mesh deformation option has been added. This option can be considerably faster than deforming the blade meshes using the linear elasticity solver. The new option is engaged by setting algebraic_mesh_deform = .true. in the &elasticity_gmres namelist. This option is now the default when using FUN3D within HELIOS Again, this new option is limited in scope to only coupled rotorcraft simulations – not general aeroelastic simulations. (bb962112c)
  • Made FUN3D 13.1 compatible with HELIOS Version 7. (30c6cb6)
  • The linear elasticity solver has been revamped. For best performance, the SPARSKIT linear algebra library should be built and linked with FUN3D via the --with-SPARSKIT=... configuration flag. In the absence of the SPARSKIT library, the point-multicolor scheme is utilized as the solver for the elasticity equation; with SPARSKIT, GMRES is used as the solver, with point-multicolor as a preconditioner. The restart_deformation option is now .true. by default. See the manual for all options. (895f772)
  • Some mixed precision arithmetic in the point-implicit solver routines has been modified to improve linear system stability. The modifications have resulted in dramatic improvements in robustness for a wide range of applications. (b6924e5e)
  • Output-based adaptation standard (screen) output was augmented to provide more diagnostic information.
  • Relative (negative) adapt_output_tolerance is now allowed for feature-based adaptation as well as output-based adaptation. (707284f)
  • refine/one learned to store hex elements without modification to adapt tetrahedral elements mixed with frozen pyramid, prism, or hex elements. (7d1d691)

Bug Fixes

  • Fixed an error in the check of boundary_list input when doing a static_body_transform. (85c654c)
  • Uninitialized memory in the grid pre-processor is now initialized to zero. (a93d691)
  • Fixed (in the process of a complete recoding of the modal aeroelastic capability) an error that prevented correct execution of modal aeroelastics when run in conjunction with the incompressible flow path.

Version 13.0-382ef83—Sep 2016

The version 13.0 PDF user’s manual is available as NASA TM-2016-219330.

Enhancements

  • Viscous wall function and weakly imposed solid wall boundary conditions are added. (9b5646e)
  • The option restart_deformation is added to &elasticity_gmres to reduce the execution time of time accurate simulations with grid deformation. (5280cb2)
  • The mesh_diagnostics option is added to &raw_grid to provide analysis of grid element properties. (883eb99)
  • The options override_partition_vector and write_partition_vector have been added to &partitioning namelist. (5f984e9)
  • New output options have been added to &slice_data, see user manual documentation for details. (bfe136f)
  • Time average and RMS added to generic gas model &volume_output_variables, &boundary_output_variables, and &sampling_output_variables. (0ef48df)
  • MPI abort is now used to stop execution if an error is detected after initialization completes. This can reduce parallel execution time by 10 percent for some cases due to eliminating MPI gather-scatter operations. MPI abort can create a deadlock with some MPI implementations, which prevents the code from completing execution. (b9f819a)
  • CGNS version 3.3.0 or later is now required. Larger files that require 64-bit integers are now supported.

Input Changes

  • The timing and time_moving_grid options have been removed from the &global namelist.
  • The HIARMS actuator disk model is now activated via the hiarms_flag variable in the &hiarms_actuator_disk namelist. The --hiarms_rotor command line option has been removed. (2ba2168)
  • The &slice_data options slice_initial_coords and output_in_slice_coords are obsolete and are slated for removal. See &slice_data user manual documentation for details. (4a4225d)

Bug Fixes

  • The value of the blending function, F1, in the Menter-SST turbulence model, when both the turbulent kinetic energy and the distance are zero, was corrected to be 1 instead of 0. (4c71583)
  • The minimum allowable value for the omega transport variable in the Menter-SST, Wilcox and several Reynolds stress turbulence models was decoupled from the value in the freestream and set to the value of 1.0e-20. (a99ccd1)

At the time of the relase, the 2017 version of the Intel compiler produces an Internal Compiler Error (ICE). A work-around has been implemented for regression in the 2016 version of the Intel compiler. Our continuous integration tests examine Intel versions 2013.4.183, 2015.2.164, 2016.0.109, and 2016.3.210 (other versions may function). (49cfead)

Version 12.9-0555546—Apr 2016

The version 12.9 PDF user’s manual is available as NASA TM-2016-219012.

There is currently a regression in the 2016 version of the Intel compiler that prevents the Intel 2016 Fortran compiler from compiling FUN3D (and has been reported to Intel). Please use a version of the Intel Fortran compiler prior to 16. Our continuous integration tests have verified Intel versions 2013.4.183 and 2015.2.164, but other versions may work.

Enhancements

  • The k-kL-MEAH2015 turbulence model has been added.
  • &noninertial_reference_frame gained noninertial_frame_output which controls the reference frame of visualization data. (1e6772e)
  • &observer_motion gained a new ob_parent_name option specifically targeted to articulated rotor simulations. The new option allows simple specification of an observer frame tied to the rotor hub reference frame. (d420222)
  • &sampling_output_variables gained DES/DDES visualization functions. (3e2361f)
  • &aeroelastic_modal_data gained a backward_difference modal_update_scheme, along with the ability to perform subiterations between the fluid and (modal) structural solvers.
  • &grid_transform and &body_transform, are now compatible with overset meshes. &grid_transform requires an additional specification of which component mesh to move.

Input Changes

  • The 4thorderESDIRK4 time integration scheme has been removed. (21b4006)
  • &boundary_conditions gained farfield_point_vortex which controls the use of a vortex correction to 2D far field boundary conditions. The --point_vortex command line option has been removed. (ab5730c)

Output Changes

  • The data field contained the value of (simulation) time has been increased in size in the sectional_forces and slice.dat files. The extract_sectional_data.f90 utility code has been modified to work with the new data field size.

Bug Fixes

  • The output of total pressure (ptot) and total temperature (ttot) from the compressible, perfect gas path are now correct when requested via the &volume_output_variables namelist. Total pressure (ptot) is available in the incompressible path, however total temperature is not available. (94fc10a)
  • For fully articulated rotor blades (not actuator disk), an error in the order of the application of lead-lag and flap angles was corrected. This can have a significant effect for rigid-blade simulations where the blade motions are set via the rotor.input file (blade orientation is incorrect), and a small impact on elastic-blade simulations where the blade motions are set via a motion file. In the elastic-blade case, the error only impacts the orientation of the outer boundary of the blade grid. (8409ffb)

Version 12.8-dc8fb20—November 2015

The version 12.8 PDF user’s manual is available as NASA TM-2015-218807.

The FUN3D source code repository has been migrated to the Git version control system. A hexadecimal SHA-1 (Secure Hash Algorithm 1) is now used to refer to individual commits instead of Subversion revision numbers.

Enhancements

  • FUN3D may now be used as a “near-body solver” in the HELIOS rotorcraft simulation framework (collaborative effort with Rohit Jain of AFDD).
  • Static mesh deformation (mesh deformation before solution begins) may now be used in conjunction with dynamic mesh deformation. The distance function for turbulence modeling is automatically recomputed for the statically-deformed mesh.
  • Shear-stress contributions can be optionally added to the generalized aerodynamic force coefficients for mode-based aeroelastic simulations. Shear stress contribution is enabled by setting genforce_include_shear = .true. in the &nml_aeroelastic_modal_data namelist. Only using pressure to compute the generalized forces matches the implementation of CFL3D and CAPTSD.
  • Ffwocs Williams and Hawkings (FWH) acoustic data may now be output for noninertial frame rotor simulations. A new tool (fwh_noninertial_to_fwh_moving.f90 in the utils/Rotorcraft directory) was created to convert these noninertial frame files to inertial frame files for direct use in acoustic analysis tools such as PSU-WOPWOP.
  • For articulated rotors, all shaft axis rotation angles are now utilized (phi1, phi2, phi3) in the rotor.input file. Previously, only phi2 (shaft tilt in x-z plane) was utilized. The other angles (phi1 and phi3) were silently ignored.
  • Additional partitioning weighting options have been exposed to the user; See the manual documentation for the &partitioning namelist.
  • The Zoltan v3.82 partitioning library available from Sandia National Labs can be linked with FUN3D as an alternative partitioning library; see the manual documentation for the &partitioning namelist.
  • METIS partitioning options have been extended to accommodate the weighted partitioning approaches available with ParMETIS and Zoltan. See the manual documentation for the &partitioning namelist.
  • The utility that merges tetrahedral VGRID meshes into prismatic grids is now capable of reading multisegment VGRID files.

Input Changes

  • The &inviscid_flux_method namelist variable smooth_limiter_coeff supersedes the command line option --smooth_limiter_coeff, which will be removed in a future release. See the user manual for a description of smooth_limiter_coeff.
  • Alternate freestream conditions may now be enabled via namelist input. The variable vinf_ratio in the namelist &nml_reference_physical_properties sets these alternate conditions in the same way that the command line option --alternate_freestream did.
  • The &metis namelist has been renamed the &partitioning namelist. The variable metis_numbering_entry has been moved from the &code_run_control namelist to the &partitioning namelist.
  • The serialize_partitioner namelist option has been removed. Instead, specify partitioner='metis' in the &partitioning namelist.
  • The use_imesh_constraint namelist input has been eliminated. Instead, the value of imesh_weighting in the &partitioning namelist should be set appropriately. This weighting only applies to dynamic overset grid systems.
  • inlet_symmetry has been renamed to engine_symmetry and inlet_solution_method removed from the &boundary_conditions namelist.
  • The fixed, supersonic inflow boundary condition, 7100, fixed_inflow, now uses all 5 primitive variables input in the &boundary_conditions namelist variable q_set(ib,1:5). Previously, only the density, pressure and the magnitude of the velocity using the three input components, q_set(ib,2:4), were applied normal to the boundary at each node.

Bug fixes

  • Fixed a parallelization bug where large_angle_fix (ivgrd internal variable) was turned off inconsistently in partitions without any large angles. (r75312)
  • Fixed a parallelization bug where strong turbulent boundary initial conditions are now applied consistently to ghost nodes. This only affects initial transients and not the converged solution. (143e91d)
  • Fixed a bug so that SA-QCR viscous terms are now applied to tetrahedral elements. This affected tetrahedral grids and tetrahedral elements in mixed-element grids. The linear eddy viscosity of the standard SA was being used in place of QCR terms. (4508027)
  • Fixed a bug in the hex numbering for VTK output. (r75159)
  • Fixed several bugs in the Venkatakrishnan limiter and related smooth_limiter_coeff. (r75007, r75139)
  • Fixed bug that prevented correct output of rotor performance files for multiple rotors (r75259)
  • Fixed several bugs for rotors with clockwise rather than the usual counter-clockwise rotation (Thanks to Rohit Jain of AFDD for finding these: r75213, r75200, and r75040)

Known Bugs

  • The output of total pressure (ptot) and total temperature (ttot) are not actually available via the &volume_output_variables namelist, contrary to the manual. Zeros will be output for these variables if requested.

Version 12.7-74063—May 2015

The version 12.7 PDF user’s manual is available as NASA TM-2015-218761.

Input Changes

  • The &code_run_control metis_numbering_entry variable is required for serial partitioning, serial_partitioner=.true.—see &code_run_control namelist description in the user manual. (r73658)
  • The ammo.input file has been replaced with a new file called design.nml, which contains a single &design namelist containing inputs very similar to the now-obsolete ammo.input file. Variables and their defaults are documented in the user manual. (r73780)

Bug fixes

  • Fixed a bug in the residual computation for time-dependent cases that led to small errors in the the imposition of the no-slip condition (r73770); no impact on steady-state flows. The bug was introduced in January 2015 and was in the v12.6 release.
  • Fixed a bug in visualization when output in a (moving) observer frame. Bug was encountered only when restarting with a handful of timesteps: the observer velocity was not preserved after restart and took several steps to recover to the correct observer velocity. No impact on actual flow solution, only visualization thereof, and only if the user requested observer_motion in moving_body.input. (r73663)
  • An out of array bounds write affecting point sampling on the boundaries of mixed element grids is repaired. (r73621) This issue, introduced March 2011, can cause an incorrect residual or segmentation fault.

Version 12.6-73467—March 2015

The version 12.6 PDF user’s manual is available as NASA TM-2015-218690.

Known Bugs

  • For time accurate simulations, the strong no-slip boundary condition is not enforced correctly.
  • Point sampling on the boundaries of mixed element grids can cause an out of array bounds write affecting the correctness of the residual or causing a segmentation fault (repaired with r73621, bug introduced March 2011)

Enhancements

  • An option has been added to allow serial partitioning with the METIS library if desired (&code_run_control serial_partitioner=T /). (The serial partitioner typically provides more efficient partitions.) The master node must have sufficient memory to store the connectivity graph for entire global grid. (r72484)
  • Two new radial thrust and torque (swirl) distributions have been added to the actuator disk model. These are a Goldstein distribution LoadType=6 and a distribution read from a file LoadType=5. (r72090)
  • Two new boundary condition options have been added to time-accurate simulations of air-breathing propulsion systems. A delta-function impulse, of a specified length and amplitude, can be applied to either an engine inlet outflow boundary or the inflow boundary of a subsonic nozzle plenum. New boundary condition numbers and names are used for these options. Further information can be found in the user manual. (r72542, r72554)
  • The Quadratic Constitutive Relation (QCR) option for the Spalart-Allmaras (SA) turbulence model is now available.

Input Changes

  • The previously depreciated (v12.3) schedule_number variable in the &nonlinear_solver_parameters namelist has been removed. A namelist read error will occur if it is present. (r73337)
  • massflow_dimensions and massflow_set_out have been removed from the &boundary_conditions namelist. A namelist read error will occur if it is present. (r71947)
  • The format of rotor.input has changed to specify TorqueCoff instead of PowerCoff. (r72090)
  • The prior_time_avg variable has been deprecated from the time_avg_params namelist in a way that is backwards compatible. Users are encouraged to remove this variable because its use will cause an input error in future releases. (r72572) Defaults were also changed to reduce input for common use cases.
  • The unused variable number_of_lines was removed from the &sampling_parameters namelist. (r71643)
  • Unimplemented options were removed from the &boundary_output namelist. (r72567)

Bug fix

  • Inconsistency in temporal backplane initialization on boundaries corrected. (r72936)
  • The code now exits cleanly if an error occurs during grid mirroring. (r72807)
  • A possible MPI deadlock was eliminated from equ_type='generic'. (r72778)
  • A possible MPI deadlock was eliminated from point sampling. (r72780)
  • A memory leak was eliminated from line partitioning (r72648) and multiple equation turbulence models (r71991).
  • A performance regression for multiple equation turbulence models has been addressed, recovering the speed of v12.2.

Build Environment

  • The Fortran dependency generation is now distributed. This should not affect users.
  • A C++ compiler is required if the Fortran compiler has ISO C Bindings (F2003). A link error can result if inconsistent compiler/C++ libraries are used.
  • The g95 Fortran compiler is no longer supported.

Version 12.5.1-71602M—September 2014

The version 12.5 PDF user’s manual is available as NASA TM-2014-218520.

Input Changes

  • The format of rubber.data has changed slightly to include four additional global design variables in addition to the Mach number and angle of attack. A template of this file is located in the Adjoint directory of the source distribution. (r70475)
  • An additional input field has been added to ammo.input to support user-defined parameterizations. The input specifies the name of the user-defined executable to be run when user-defined surface parameterizations or their sensitivities need to be evaluated during the course of a design optimization. See manual for further details. (r70625)
  • The --write_mesh command line option now requires a single trailing character string specifying the project name for the mesh to be written. (r70665)

Enhancements

  • The power-based cost function for the adjoint solver has been broken up into its components in each of the three Cartesian directions. (r70428)
  • For simulations in noninertial reference frames, the rotation rate about each Cartesian coordinate axis is now available as a design variable. (r70475)
  • The sideslip (or yaw) angle is now available as a design variable for adjoint-based sensitivity analysis and design optimization. (r70492)
  • Extended the dp/dt unsteady objective function to instead use drho/dt if requested for compressible flows. See manual for details. (r70538)
  • Input verification is improved to ensure that the adjoint solver and any subsequent sensitivity analysis are compatible with the user’s boundary conditions, governing equations (inviscid, laminar, turbulent, compressible, incompressible), grid topology (element and boundary face types), temporal discretization, objective/constraint functions, and design variable choices. The adjoint solver should immediately stop with an error message when an unsupported combination of input options are detected.
  • The output from component force tracking has been modified to include all the moments and forces, with pressure and viscous forces split out, similar to what is output to the [project_name]_hist.dat file. (r70575)
  • The manner in which user-defined geometric parameterizations are specified has been formalized for design optimization. The user can now mark one or more bodies in rubber.data as having user-defined parameterizations. The user must provide the name of an executable parameterization tool so FUN3D can invoke it during design optimization. The names of any necessary auxiliary files must also be provided. See the Using Other Parameterization Packages section of the user manual Design Optimization chapter for further details. (r70625)
  • The design optimization opt_driver has been enhanced to archive files during the course of a design optimization. For example, visualization files can be archived to develop animations of the design history. See the design section of the manual for details. (r70779)
  • The I/O operations that must occur during flow solutions to support subsequent time-dependent adjoint solutions have been extended to be compatible with the temporal error controller. (r71087)
  • When using the near-field sonic boom objective function boom_targ, target pressure points which are identified as orphans will no longer contribute to the objective function nor its sensitivity. The contributions from these points were formerly associated with the nearest grid point. (r71244)
  • Boundary condition family name is written to project.mapbc, if available. (r71311) Boundary condition family name is maintained during grid adaptation for the refine grid adaptation library. (r71310)
  • The vortex generator source term model is extended to include triangular devices in addition to the existing trapezoidal devices. (r71388)
  • Limited support for objective functions including flow-through boundaries has been added (generally relevant to propulsion-type simulations). Contact support team for details. (r71508)
  • A new option to alter the mesh before beginning the flow solution has been added. Similar to the existing &grid_transform namelist that acts on the entire mesh, the new &body_transform namelist allows the user to specify a rotation or translation to a body (one or more grid boundaries). The grid is then elastically deformed around the new body position, after which the flow solve begins. (r71292)
  • The functionality of the stop.dat file has been extended. Previously, the file was used to terminate a run earlier (fewer number of iterations/times steps) than requested in the fun3d.nml file. The new functionality allows a run to be extended beyond the number of steps requested at the beginning of the run. For example, if 1000 steps were requested at run time but the user deems 2000 would have been better, create a stop.dat file with one line containing 2000, and the code will continue on to do 2000 steps.

Bug fix

  • A time rollover bug that halts execution in rare occasions with a cryptic error message was replaced with a warning. This happened when the count argument of the the system_clock exceeded the count_max argument. This would happen with a frequency of count_max/count_rate seconds, which is compiler and system dependent. (r71660 was backported to fix)
  • The option to move the moment center of the body for moving-grid cases was discovered to be broken. The moment center remained fixed in space even if requested to move or once its location was specified, it could not be changed. Both of these moment center related issues are repaired. (r70473)
  • Two arrays related to dci_io are now always allocated. This fixes an issue where they were used before being allocated with some MPI implementations. The flow solver no longer prematurely terminates during a restart if steps < dci_period . (r70624)
  • Pyramids are read in the correct orientation from ASCII AFLR3 files. (r70661)
  • Fixed a subtle bug in the computation of the power associated with flow-through boundaries (generally relevant to propulsion-type simulations). (r71460)
  • Fixed a bug in total force accounting when flow-through boundaries are present (generally relevant to propulsion-type simulations). (r71499)

Version 12.5-71602—September 2014

A time rollover bug that halts execution in rare occasions (once every four months) with a cryptic error message was found with this version. This makes 12.5-71602 obsolete. Use version 12.5.1-71602M, which was backported with a fix.

Version 12.4-70371—April 2014

The version 12.4 PDF user’s manual is available as NASA TM-2014-218179.

Input Changes

  • The --with-ParMetis=/path/to/parmetis/lib configure option has been renamed to --with-parmetis=/path/to/parmetis where the /path/to/parmetis should contain lib and include subdirectories. Some older versions of ParMETIS have inconsistent header files, it is recommended that you upgrade to the latest version of ParMETIS. (r69411,r69413,r69416,r69463,r69580)
  • Removed --linear_projection from the command-line options, use &linear_solver_parameters namelist linear_projection variable. (r67756)
  • The default of the cr3 term of the SA-RC model has been changed to the recommended value of 1. Use the &spalart namelist variable sarc_cr3=0.6 to obtain previous behavior. (r67276)
  • When setting aside separate cores/nodes on which to run auxiliary processes that rely on a split MPI communicator (such as SUGGAR++, VisIt, and the DCI_IO option), the cores/nodes dedicated for the FUN3D solver itself should now appear first in the list; and cores/nodes intended for auxiliary processes should appear last, after the primary solver cores/nodes. (r67177)
  • The naming convention for mode-shape files read into FUN3D when doing modal-based aeroelastic simulations has changed. The old naming convention was [project].bodyN_modeM (for body N and mode M). The new convention is [project]_bodyN_modeM.dat. The modal files have historically been ASCII Tecplot files, and the new file extension fits with the convention used for all other ASCII Tecplot files read and written by FUN3D. (r69636)
  • In addition to mode-shape files in ASCII Tecplot format, binary (stream) DDF files are now also supported. To utilize stream DDF files, use mode_file_format='stream' in the &aeroelastic_modal_data namelist in moving_body.input. (r69636)
  • The command line option --six_dof has been removed. 6DOF now triggered by setting motion_driver(:)='6dof' in moving_body.input. (Note: 6DOF currently requires a DOD library with restricted distribution.) (r69752)

Output Changes

  • The 2D path in FUN3D has historically taken the input grid, and behind the scenes, doubled the extent in the y-direction. It also took the input reference area and doubled it (but, not the y_moment_length), so most forces and moments accounted for the doubled spanwise extent of the grid except for Cmx and Cmz, which are really meaningless for 2D anyway. However, when the mesh and/or solution was output, the spanwise factor of two was not removed. With this release, all the behind-the-scenes manipulations have been removed; the grid is no longer doubled in y. This results in three areas of output changes: 1) the output grid will be the same size in y as the input grid, 2) residuals will be smaller by a factor of two, and 3) Cmx and Cmz will be smaller by a factor of two. All other forces and moments remain the same.

Enhancements

  • A version 12.4 PDF user’s manual is now available as NASA TM-2014-218179.
  • New time-averaged sampling variables available for time-accurate solutions: mu_t_tavg, vort_mag_tavg, vort_x_tavg, vort_y_tavg, vort_z_tavg can be extracted after computing them via the &time_avg_params namelist with tavg_header_version=3. (r66879)
  • If the compiler supports it, the flow and adjoint solver will use open(convert=...) in an attempt to read big endian formatted grid and restart without the need to set an environment variable. This capability has not been propagated to all utility or auxiliary files. (r66814,r66822,r66833,67564,r66973,r66974,r66983)
  • Updated the sBOOM interface to handle reverse equivalent area functions. (r67152)
  • When running dynamic overset grid simulations with precomputed DCI information stored on disk, these files may now be loaded asynchronously on cores/nodes dedicated specifically for this purpose to hide overhead associated with this I/O. To utilize this option, ASCII DCI files must be generated using SUGGAR++ and then converted to binary FUN3D DCIF files using the dci_to_dcif utility. Set aside the desired number of additional cores/nodes for DCI I/O at the end of your machine allocation, then use the command line option --dci_io N, where N is the number of cores/nodes set aside for the I/O operation. (r67214)
  • Added several new turbomachinery-related objective functions and their adjoint implementation for design optimization: mass flow rate, total pressure ratio, and adiabatic efficiency. (r68121)
  • Added equivalent area-based objective functions for adjoint-based design optimization of sonic boom configurations. See these notes for background information. (r68091)
  • Corrected uninitialized variable in boundary face preprocessing. (r69359)
  • Refactor and streamline memory and communication infrastructure for red-black solver. User should see 1-5% performance improvement depending on solver inputs and hardware. (r68769)
  • Modified upper bound on “r” source term in Spalart-Allmaras turbulence model to match upper limit of 10.0 published on the NASA Turbulence Modeling Resource website. FUN3D has traditionally used an upper bound of 20.0. (r68657)
  • To facilitate importing iteration histories into spreadsheet programs, added a hist2csv utility to convert from [project_name]_{hist,fm}*.dat files to CSV format. (r69820)
  • To compute statistics of iteration histories, e.g., time-averaged forces and moments, added tail_hist_stats utility that can process [project_name]_{hist,fm}*.dat files. (r69820)
  • Added setup_csv_cases utility to facilitate setting up a series of runs described in a CSV file where the column headers are namelist variable names and each row of parameters for those namelist variables are the corresponding cases to generate. (r69820)

Bug fix

  • An error in the computation of the F1 function was discovered and corrected in the SST 2-eqn model; an additional term intended only for use with the gamma-ret-sst 4-eqn model was being applied by default. (r70357)
  • The code would hang after reporting a time-averaging &boundary_output_variables namelist error. (r68882)
  • The equation for the calculation of ptot in the boundary visualization output has been repaired. (r67240)
  • A bug in which the default slicing direction, y, was never turned off if the user selected another direction was fixed. (r67367)
  • An API change in the CGNS library after version 2.5.3 is now detected and implemented, which allows parallel volume export from the solver via modern CGNS versions. (r67326,r67507)
  • A bug was repaired for adiabatic boundary conditions with specified wall velocity. (r67540)
  • An extremely slight bug in the implementation of the SST turbulence model was corrected. The cross term limit from Wilcox2006 was accidentally included in SST. (r67802)
  • A bug was repaired in the Pope correction, used mostly for Wilcox two-equation models; the pope_correction_w98 option incorrectly used Sij_hat in its construction and pope_correction_w06 used Sij, but these should be reversed. (r68448)
  • Format descriptors controlling output of Massoud/DDF input files have been modified to correctly handle values with three-digit negative exponents. (r68596)
  • Fixed format descriptor for writing negative 3-digit exponents correctly in Massoud/DDF files (r68596)
  • Fixed very subtle pathological case when merging tetrahedral VGRID mesh into prismatic grid (r68316)

Version 12.3-66687—May 2013 (perfect gas only)

Known Bug

  • When running --thin_layer The source term in SA model was computed with ULSQ instead of the more robust edge-based GG (later repaired with r69942)

Input Changes

  • Removed—sampling_freq from the command-line options, as the interaction with the &sampling_parameters namelist variable sampling_frequency was problematic. The frequency of sampling output is now governed only via the namelist variable.
  • The vestigial schedule_number in &nonlinear_solver_parameters has been deprecated. Currently a warning is issued for its use, but it will become an error in future versions. (r66592)
  • The capability to read a subset of NSU3D grid format types has been removed. (r65262)

Enhancements

  • The SA model nondimensional working variable farfield boundary condition has been changed to the recommended value of 3. (r64669)
  • In-situ visualization with VisIt now operates on a single mesh entity with individual boundaries accessible via the Subset window. Note: overset simulations are still unsupported by in-situ visualization. (r66436)
  • On mesh input, FUN3D now attempts to correct left-handed elements of all supported types (tetrahedra, pyramid, prism, and hexahedra) by swapping node orderings. (r66392)
  • Cp design is now allowed on solid surfaces (inviscid or viscous) instead of just viscous. (r64842)
  • Power, as defined as the integral of force times velocity over the surface, is now available as an objective/constraint function in the adjoint solver. (r63334)
  • New I/O option available for efficiently storing very frequent/large amounts of volumetric data for unsteady problems (terabytes or more). Specify export_to='native' in &volume_output_variables namelist. This approach relies on parallel asynchronous stream I/O to minimize overhead. (r63907,r66594)
  • During mesh deformation, the mesh on x/y/z = constant boundaries is allowed to deform “in plane”, independently of the boundary condition type. Previously this was limited to symmetry boundaries; non-symmetry BCs require user input in the &boundary_conditions namelist. (r64471)
  • A run time limit can be imposed with duration_limit_in_minutes in &code_run_control namelist (r66058)
  • The file-based communication between FUN3D and the sBOOM sonic boom propagation tool has been eliminated in favor of a new in-core, API-based library call. sBOOM inputs are now specified in the &sboom namelist in fun3d.nml. Linking to the library requires the --with-SBOOM=/path/to/SBOOM option when configuring. (r66122)
  • Loose coupling and tight coupling (though non-maneuvering) capability with the RCAS rotorcraft comprehensive code via in-core data transfer (not file I/O based). Requires RCAS’s sdx library, and uses the “cfdmultirotorsdx” CFD interface to RCAS.
  • Pointwise CAE Plugin source updated for compatibility with the Pointwise SDK v0100r4. This will require the Pointwise SDK v0100r4. Note, plugin source from prior releases of FUN3D are incompatible with the Pointwise SDK v0100r4 (r65915).
  • For aero-structural coupling via Jamshid Samareh’s “Discrete Data Transfer Between Dissimilar Meshes” methodology (aka DDF), FUN3D can now read and write binary .ddfb files, eliminating the need to run the intermediate “toFromDDF” converter on ASCII Tecplot files. To output aerodynamic loads in .ddfb format, use aero_loads_file_format = ‘stream’ in the &massoud_output namelist; to read in a new surface mesh in .ddfb format, use massoud_file_format = ‘stream’ in the &massoud_output namelist. The .ddfb format is recommended to avoid the pitfalls of parsing character strings for numeric values.

Bug fix

  • Corrected problems importing FV-UNS (version > 2.4) FORTRAN Unformatted mesh files. (r66386)
  • The prandtlnumber_turbulent default value is now 0.90 (was 0.72). This changes the eddy-viscosity contribution to the mean-flow energy equation. The value can be controlled with the &turbulent_diffusion_model namelist. (r64976)
  • An array declaration that could result in the wrong offset in the first dimension for grids with all element types present simultaneously. (r63285)
  • Removed superfluous ParMGridGen interface that triggered a compiler bug. (r63570)
  • V12.1 introduced a bug where the --gamma command line option would not change gamma. (r63547)
  • Repaired bug where &sampling_parameters’s plot(N)='serial_history' option would write the 1X of the requested values plus 9X garbage when more than 50 sampling points were requested. (r63966 and r63978)
  • Fixed quad sampling input error-handling by making invalid user-specified quads a fatal error. Previous releases would simply note the error in a subtle manner in the screen output, then incorrectly stop processing all subsequent sampling geometries. (r63996)
  • Various memory leaks. The largest leak involved sampling output and is know to cause the failure of long running jobs. (r65038, r65579, r65580) The code base has been scrubbed of less significant leaks as well. (r65027, r65024, r65018, r65014, r65010, r65009, r65007, r65006, r64996-r64999,r66567)
  • Fixed a subtle problem which would cause very small errors in sensitivity derivatives for sBOOM-based objective functions in the event multiple ground signals were being computed. Sensitivities for the second and any subsequent signals would be slightly incorrect. (r66122)
  • Fixed a bug in boundary slicing which could lead to an undefined value in certain instances when the code made a “helpful” change to a user-set value of le_def or te_def. The bug only manifested itself if performing the same slice at multiple points in time.

Version 12.2-63280—October 2012

Major Enhancements

  • To expand design optimization options, added support for the Sparse Nonlinear OPTimizer (SNOPT).
  • To configure on non-standard MPI installations add the --without-mpicc argument to the configure command see notes for 11.1-46128 for a detailed description of the analogous --without-mpif90. (r60928)
  • Adjoint-based design optimization may now be performed with mixed-element grids for steady or unsteady compressible or incompressible turbulent flows on single-block grids involving static, rigid, or deforming motions, or noninertial reference frames. The extension to overset grids containing mixed elements will appear in a future release.
  • The four-equation Langtry-Menter transition/turbulence model has been implemented.
  • The BAMG 2D mesh adaptation code can be invoked by adapt_library='bamg' in adapt_mechanics namelist.

Minor Enhancements

  • Setting the "Number of processors from which to run adjoint solver" to 0 in ammo.input will now prevent writing the -np option to the mpirun/mpiexec command used to invoke the adjoint solver. This is needed on some HPC machines with PBS queuing systems that determine the number of processors from the scheduling environment. Note: this works only if the corresponding command_line.options file does not include the -np option for the mpirun command.
  • For design optimization, the forces.tec file is now a full Tecplot file including headers, and has been renamed forces.dat according to standard convention.
  • The --adapt_output_metric command line option has been migrated to adapt_export_metric in the &adapt_metric_construction namelist.
  • The rotorcraft “Figure of Merit” cost function may now be used for compressible turbulent flows on tetrahedral or mixed element grids.
  • A rotor propulsive efficiency objective function has been added for use with compressible turbulent flows on tetrahedral or mixed element grids.
  • The SA turbulence model now has eigenvalue smoothing on the convective flux. To recover the previous un-smoothed scheme, set ubar_eps = 0.0 in &turbulence namelist. Jacobians and adjoint are consistent. (r60714) (r60735)
  • Updated file I/O format to correctly interface with Sculptor 3.1 during design optimization.
  • The symmetry boundary condition indices 6661/6662/6663 are now correctly handled in the adjoint solver and may now be used for design optimization cases. The previous workaround “sliding” BC indices 3080 and 4080 are now obsolete.
  • Added lift and drag plotting output for the blade element rotor loading option.
  • The adjoint solver will now continue to evaluate sensitivities with respect to any geometric parameterization variables even if the --show_surface_sensitivity option is engaged. Conversely, this command line option will also now function correctly in the absence of a geometric parameterization.
  • Design optimization for sonic boom mitigation using nearfield pressure targets (boom_targ function name in rubber.data) and coupled SBOOM propagation (sboom function name in rubber.data) can both now handle mixed element grids.
  • The sonic boom objective functions are now controlled by the &sonic_boom namelist. A template is provided in the fun3d.nml template file in the source code distribution. The sonic_boom.input file is now obsolete.
  • The input target pressure file associated with nearfield sonic boom mitigation (boom_targ function name in rubber.data) formerly named pressure_target.tec must now be named pressure_target.dat. Similarly, the output file containing computed pressure signals is now named pressure_signatures.dat rather than pressure_signatures.tec. The pressure target is freestream pressure if pressure_target.dat is not present. (r62159)
  • The cylinder-based sonic boom objective function identified by the boom function name in rubber.data is now obsolete.
  • The Fieldview output format is now C-binary (Fortran-stream) to avoid the complexities of Fortran records larger than 2GB. (r62217)
  • Design optimization using the coupled FUN3D-sboom formulation can now include an arbitrary number of waveforms (i.e., any combination of on-track and off-track locations)
  • Added option to use old-style dfduc3 Jacobians for incompressible cases; these Jacobians may be more robust for some cases. Invoked by setting dfduc3_jacobians = .true. in the &code_run_control namelist.
  • Extended periodic boundary condition to handle periodicity simultaneously in all three Cartesian directions. Limited to one processor applications for now (one-dimensional periodicity may still be used in parallel).
  • Since it is trivial to load multiple files into Tecplot these days, concatenation of solution plotting files during design optimization has been eliminated. Most users build with binary Tecplot I/O support, so this option wasn’t functional in such instances anyway.
  • Ramping the total pressure/total temperature boundary condition (7011) with &component_parameters’s inflow_pt_ramp now works regardless of restarts. (r62877)
  • The default method for storing the time-averaging information has been changed from a separate file for each partition to a single file. The old behavior can be obtained by setting &time_avg_params single_file=0. (r62878)
  • Initial release of source term model for vortex generators – looking for feedback. See these notes for background and solver inputs.

Bug fixes

  • In the event the user explicitly specified a '-np xxx' option for mpirun (or mpiexec, etc.) in command_line.options for the optimization driver, two '-np xxx' options were being supplied to the mpirun command for the adjoint solver. The user-supplied value, if present, now takes precedence. As noted above, if the number of processors specified for the adjoint solution in ammo.input is zero, no '-np xxx' option will be passed to mpirun for the adjoint execution; the solver will instead use as many processors as are allocated in the current queuing environment.
  • Correct periodicity to work with single precision grids. Use the --periodic_tol value to internally match periodic node pairs. (r60911)
  • vgrid_merge_into_prisms, close mapbc unit to allow it to be reopened by gcc gfortran compiler. (r60724)
  • Fixed memory error in grid linearizations of skin friction on quad faces.
  • Fixed bug related to user-specified rotor disk source terms in the actuator disk module.
  • The angle of attack is now taken into account when performing design optimization for sonic boom mitigation using nearfield pressure targets (boom_targ function name in rubber.data) and coupled SBOOM propagation (sboom function name in rubber.data). When using the nearfield boom_targ objective function, the target data specified in pressure_target.dat should be in the rotated coordinate system, which is consistent with the output file pressure_signatures.dat containing the nearfield signature outputs.
  • Repaired --sampling_freq and &sampling_parameters sampling_frequency(:) so they work properly with each other (command line option trumps namelist list options), stop.dat, and other edge cases. (r61539)
  • Repaired Fieldview output with --make_tets by correctly sizing global boundary face counts during boundary quad split. (r62645)
  • Repaired Fieldview output of very large grids by writing as C-binary (Fortran stream) instead of emulating Fortran unformatted. The Fortran records larger than 2 Gigabytes were malformed. (r62217)
  • Repaired Fieldview output to correctly handle iblank and imesh arrays in cases where overset grids are involved. The iblank array is provided to Fieldview as ‘iblankfv’, so as to not interfere with the native iblank internal to Fieldview.

Version 12.1-60521—late March 2012

Major Enhancement

  • Mixed-element adjoint solutions may now be performed for unsteady compressible turbulent flows on single-block grids involving static, rigid, or deforming motions. The extension to overset grids will appear in a future release, as will the combination of incompressible flows with mixed-element grids.

Minor Enhancements

  • Added an objective function based on the RMS value of the stagnation pressure on a circular disk surface cutting through the mesh. Intended as an initial cut at providing design capability for engine inlet flows.
  • Tolerance used in determining periodic node pairs can be controlled using the --periodic_tol command line option.

Bug fixes

  • The adjoint is now correct for element-based boundary conditions dependent on the interior state of the flow. (r60501)
  • The SA adjoint is now correct for element-based boundary conditions. (r60497)

Version 12.0-60308—early March 2012

Note: Due to the move from v11 to v12, all users must execute a new software usage agreement. This process is initiated via the online request form.

Major Changes

  • The sequential grid pre-processor and solution post-processor, party, has been discontinued. (It was deprecated as of v11.) Instead, parallel grid partitioning is done on the fly and solution visualization is performed via co-processing. Most of party’s other functions are available via codes from the utils directory.
  • Merging VGRID boundary-layer tetrahedra into prisms is now performed with vgrid_merge_into_prisms.
  • The specialized adapt_mpi (or adapt) code has been replaced by the --adapt command line option. Feature-based mesh adaptation is now run via the flow solver, and adjoint-based mesh adaptation is now run via the adjoint solver.
  • The refine (grid adaptation and mesh untangling) and knife (cut cell) libraries are now packaged with FUN3D.
  • The ginput.faces translator has been discontinued. Namelist-based input (fun3d.nml) has been standard since v10.5.

Major Enhancements

  • Adjoint solutions for incompressible flow may now be performed on tetrahedral grids for inviscid, laminar, and turbulent steady flows, as well as unsteady flows on static, dynamic, and overset grids.
  • Adjoint solutions may now be performed for steady compressible turbulent flows on mixed-element grids.

Minor Enhancements

  • Added ability to specify phase shifts for forced motion, both in terms of the low-level trig functions and the resulting angle that is used to construct the transform matrix itself. This may be applied to moving bodies, the observer reference frame, or both.
  • The farfield_riem (5000) boundary condition is now allowed for incompressible flow.
  • The viscous_mflux (4010), viscous_unorm (4020), and viscous_mvpln (4030) boundary conditions have been discontinued. These capabilities have been subsumed by the &boundary_conditions namelist.
  • The project_name.initbc file is now ignored. Modeling translating and/or rotating boundaries, e.g., moving ground plane and/or rotating tires, is now specified through the &boundary_conditions namelist wall_velocity, rotation_center, rotation_vector, and rotation_rate variables.
  • The &boundary_conditions namelist adiabatic_wall flag has been removed. To specify adiabatic boundary conditions, set wall_temp_flag(patch#)=.true. and wall_temperature(patch#)=-1.0.
  • The adjoint solver now respects any remove_boundaries_from_force_totals file that may be present in the flow solver directory. I.e., if the user has specified a cost function on all boundaries in rubber.data, the boundaries specified in the remove_boundaries_from_force_totals file will not contribute function linearizations to the adjoint problem.
  • To provide an estimate of where transition to turbulent flow occurs, Spalart’s turbulence index (turbindex) is now available for boundary output.
  • Added a few sanity checks on aeroelastic modal input.
  • The new slice_initial_coords option allows faster slicing for some cases by only computing slice interpolation coefficients once.
  • Added a sample rotor.input file in utils/Rotorcraft.
  • Added ability to use --test_freestream with two-equation turbulence models.
  • To allow specification of how frequently Massoud files are written, added --massoud_output_freq option, which functions like --animation_freq, --sampling_freq, etc.
  • The --supersonic_floors command line option has been removed. For compressible flow, density and pressure are always floored at one-percent of freestream values unless the --full_update command line option is given.
  • Added --show_surface_sensitivity command line option to the steady-flow adjoint solver, which will produce a Tecplot file containing the sensitivities of the user-specified cost function(s) with respect to the x, y, and z-directions and the local surface normal direction. This is helpful if a geometry parameterization is not available or you need guidance when constructing one.
  • Added loose coupling capability with the RCAS rotorcraft comprehensive code, which is compatible with RCAS’s “mrotor_2010” CFD interface.
  • The design optimization framework has been generalized to accommodate multi-objective optimization based on weighted combinations of the composite objective functions already available in the code. The format of the rubber.data file has changed slightly to accommodate a new weight, target, and power for each composite function. These operate in the same manner as the weights, targets, and powers for the low-level component functions used to construct each composite function. See the rubber.data template available in the Adjoint/ directory of the source distribution.
  • To gracefully exit a design optimization run before it has completed, the user may now place a stop.dat file in the ammo/ directory at run-time if desired. Similar to the solvers, the optimization driver will look for this file at each step of the design process and terminate gracefully if a positive integer is present on the first line.
  • The command line option --store_full_stencil for the adjoint solver is now also valid for flux_construction=”vanleer”. This option requires more memory, but typically yields a speedup of 5x in overall wall-clock time.

Bug fixes

  • One-sided finite differences are no longer used to compute boundary viscous fluxes for farfield, tangency, and element-based boundary conditions. The analytic fluxes (zero) are used instead. This should increase robustness for low Reynolds number flows as well as a number of other cases.
  • Modified tetrahedral merging capability to handle a rare pathological situation where the dividing line between two VGRID boundary patches cut across a boundary layer grid on a boundary such that the two triangles comprising a new quad resided on two different boundary patches.
  • The geometric conservation law for the incompressible continuity equation on moving grids has been repaired.
  • Incompressible sampling now give correct values for primitive variables (Eric Lynch).
  • Closed off SA, KE, and HRLES turbulence models in element-based boundary conditions for incompressible flow.
  • Fixed several bugs for moving grids with weakly-enforced viscous boundary conditions. Note: These BCs are rarely, if ever, used as they require the user to alter the this_bc_is_weak_viscous flag in bcs.f90.

Version 11.6-54779—July 2011

Major Enhancements

  • Initial release of adjoint-based design optimization support for steady and unsteady flows on static and dynamic overset grids

Minor Enhancements

  • Users may now use different parameterization schemes within the context of the same problem. For example, on a wing-body configuration, it may be easiest to parameterize the wing with Massoud, but to use Sculptor for a wing-body fillet. Parameterization scheme is now specified for each body in rubber.data and no longer in ammo.input. See the templates for these files in the Adjoint and Design subdirectories of the source distribution.
  • Visualizations of steady and unsteady adjoint solutions may now be performed in the same manner as for flow solutions, using boundary animations, volume animations, and sampling surface animations (such as isosurfaces)
  • Did some streamlining of inverse design for target surface pressures
  • An interface for the commercial optimization packages DOT and BIGDOT is now provided if the user has access to these libraries for adjoint-based design optimization. The lift-constrained drag minimization online tutorial case has been extended to show typical results based on the methods available in these packages.
  • Alpha release of adjoint-based optimization capability using FUN3D formally coupled with SBOOM sonic boom propagation solver.
  • Record lengths for ASCII parameterization data coming into FUN3D may now contain as many as 30,000 characters to handle cases with very many design variables
  • Added the ability to read in a series of transform matrices (as a function of time) to allow specified rigid-grid motion as arbitrary as the user can dream up (and cast as a 4×4 transform matrix). Otherwise, specified motion is limited to a few simple functions built into the code (e.g. constant translation/rotation rate or sinusoidally varying translation/rotation.
  • Added the (highly specialized) ability to perturb generalized forces in the modal aeroelasticity path
  • Adjoint computations for inviscid flows can now be performed on mixed element grids; viscous terms on mixed elements are being worked in our copious spare time

Bug fixes

  • The command line option --outer_loop_krylov for the adjoint solver is now compatible with the mesh adjoint solution at the end of a steady sensitivity analysis
  • Fixed issue in overset partitioning of deforming meshes that potentially allowed some processors to have no nodes that needed deformation. In turn that caused the solver to hang.
  • Fixed a bug in the output of multiple massoud files
  • Fixed complex-number restarts
  • Fixed a very subtle array bounds overwrite that occurred for grid adjoint solutions for steady turbulent flows

Other

  • Format of ammo.input deck for design optimization has been changed to eliminate need for cp slicing info, and to specify optimization method when using DOT/BIGDOT optimization libraries. See template in Design subdirectory of source distribution.
  • When performing design optimization, user must now specify number of processors to be used for adjoint solver. (In most cases, this value will be the total number of processors allocated for your job. However, when running designs on overset grids, SUGGAR++ may be running concurrently on a subset of the available cores during the flow solution. Since SUGGAR++ is not required during the adjoint solution, the adjoint solver must now be told explicitly to run on the same number of cores that the flow solver used, which will NOT be the total number of processors allocated for your job.) See template for ammo.input in the Design subdirectory of source distribution.
  • Restored boundary names (if family names are assigned in the mapbc file) or boundary numbers to the zone title in tecplot boundary output
  • Link to refine-1.7.1

Version 11.5-52754—April 2011

Major Enhancements

  • Geometry parameterizations based on the Sculptor software package may now be used directly with FUN3D for design optimization. See the Design documentation for details, as well as the relevant Sculptor documentation.

Minor Enhancements

  • During design optimization, the Mach number and angle of attack values in rubber.data are now only used if they are active design variables. Otherwise, the values in fun3d.nml will be used.
  • When using the boom_targ cost function to design for a mid-field pressure distribution, an arbitrary number of pressure signals can now be included in the objective function (centerline, horizon, off-track, etc). Furthermore, each point in the target profiles can be given a relative weighting with a magnitude of the user’s choice.
  • To simplify, the --wall_temperature command line argument has been removed. The wall_temperature variable in the &boundary_conditions namelist provides a more general specification. For example, temperature can be specified on a patch-by-patch basis.
  • The code status block has been removed from the top of the rubber.data file used for adjoint-based design and adaptation. See the template in the Adjoint directory of the source code.
  • If mesh movement (and optionally the subsequent untangling) fails during design optimization, the solver will write “autopsy” tecplot files from each processor containing a negative volume(s), just as in the case of dynamic mesh simulations. These output files can be used to quickly locate where the mesh movement is failing in the domain.
  • When a tetrahedral VGRID mesh is merged into prisms using party, the resulting grid is now written out in .b8.ugrid (stream/C-binary) format rather than the traditional Fortran unformatted .r8.ugrid file.
  • If desired, a USM3D-style [project].flo solution file may be written from the flow solver using the command line option --write_usm3d_flo_file. (One potential use is to couple FUN3D with Dick Campbell’s CDISC design software.)
  • File system I/O endianess is now detected. VGrid meshes require big endian I/O, and AFLR3 binary meshes require a .lb8.ugrid or .b8.ugrid suffix for little or big endian, respectively. Similarly, AFLR3 unformatted meshes require a lr8.ugrid or .r8.ugrid suffix as appropriate.

Bug fixes

  • Corrected lumping with mirroring in the new front end of the solver. Previously, the subscripts for labels were over indexing.
  • Corrected partitioning of static overset meshes; previously, metis/parmetis would stop if NO zones were marked as dynamic in the DCI file

Other

  • Link to refine-1.6.3

Version 11.4-50962—December 2010

Major Enhancements

  • The adjoint-based tools are now always built. configure’s --enable-design has been removed.

Minor Enhancements

  • &sampling_parameters namelist sampling_frequency(:) and variable_list(:) has been added as options so the frequency of writing samples and the variables to be output can be varied geometry to geometry. Also, boundary and volume point sampling have been added as additional geometry choices, along with Schlieren imaging.
  • &component_parameters namelist has been added to fun3d.nml to allow the user to track the forces and moments of groupings of boundaries. Mass flow and few select flow parameters can be tracked for flow through boundaries.
  • Screen output has been reduced during start up.
  • To match the user interface used in other areas of the code, the@&flow_initialization@ namelist type_of_volume(:) now requires a string and the indices for (x,y,x) and geometry number have been transposed. Variables effected include: pmin, pmax, center, point1, and point2. For example, instead of pmin(n,:)= 1.0, 0.0, 0.0 where n is the nth geometry, it is now pmin(:,n)= 1,0, 0.0, 0.0. The user_vol_init.input file is now obsolete.
  • All design optimization cases using PORT, NPSOL, and KSOPT now make use of a simple diagonal scaling procedure. Tests have shown that this scaling provides a smoother, more efficient convergence. The optimal result is often better than the unscaled result as well. See the impact of scaling on Tutorial #1 (Max L/D for simple wing using PORT), Tutorial #2 (multipoint Max L/D for simple wing using PORT), and Tutorial #3 (Drag minimization with explicit lift constraint for DPW wing using NPSOL): unscaled result and scaled result .
  • A new command line option --write_mesh has been added to the flow solver. This option will write the mesh in parallel in its current state at the end of a flow solution. This is useful if the mesh has been moved internally within the solver, etc. The result is a binary AFLR3 file named [project]_new.b8.ugrid .
  • The type of grid is no longer specified in the optimization input deck ammo.input. See the template in the Design directory of your source. This information is now automatically gleaned from the fun3d.nml file.
  • When successfully caught, NaN locations are now dumped in Tecplot format so you can scatter plot them along with your geometry/solution to diagnose trouble spots.
  • The Cartesian force outputs cx/cy/cz as well as their pressure and viscous contributions (cxp/cyp/czp, cxv/cyv/czv) may now be used as cost functions in the adjoint solver for compressible flows.
  • Sampling surfaces can now be associated with a moving body, and thereby move in concert with that body. Association of isosurfaces with a body cannot be made however, as it is not applicable.
  • Grid adaptation is now controlled via namelists.
  • When using actuator blades, a non-linear twist distribution can be read from a file. A command line option --use_kdtree was also added to activate a faster tree-based source-to-node search. This option makes the most difference when there are more than about 70k mesh nodes per CPU.
  • Multiple version 4 restart files can now be converted to a single stream I/O restart using --lmpi_io 3 and steps = 0 in fun3d.nml. This bypasses the solver.
  • The pressure box cost function is now controlled by the &pressure_box namelist.
  • Can now visualize the laminar and turbulent volume nodes by outputting a integer variable (iflagslen) via the &sampling_output_variables or &volume_output_variables. If the volume node is “laminar”, the iflagslen value will be negative. If “turbulent”, it will be positive. This allows the user to check the specification of the transition location.
  • Can specify a 2d transition x-location with the --turb_transition command line option. You can use either a upper and lower patch specification or if you only have a single airfoil patch, use a z value to test for the upper and lower surface. The transitional patches must still be specified with a negative boundary number in the mapbc file. The new specifications are given in the fun3d.nml namelist &two_d_trans. (See Chapter 6.1 and 6.2 for details.)
  • The flow solver can now export the solution to single fieldview file via the &volume_output_variables export_to='fv' namelist setting.
  • The repair_vgrid_mesh utility can handle multi-segment cogsg files.
  • Added the ability to use stream/binary option for AFLR3 grids to create rotorcraft overset composite mesh using the dci_gen utility code.
  • Added output of solidity-weighted thrust and torque coefficients for (coupled) rotorcraft cases; also added option to output dimensional values for thrust, torque, etc
  • Added some utility codes and scripts for rotorcraft applications to the release distribution.
  • Added some error corrections if user inputs upper/lower box corners backwards (for sampling).
  • Added 3 additional force/moment outputs for rotorcraft coupling.
  • Added skin-friction and yplus computations so that these quantities could be output in the “pass-through” mode (i.e. read a restart file, output the data for plotting, and stop).
  • Added source for a Pointwise CAE Plug-in for exporting mesh and boundary conditions for FUN3D. The source can be used along with the Pointwise CAE Plugin SDK to create the plugin for Pointwise (see https://www.pointwise.com/plugins/ for details). Files are located in the misc/Pointwise/CaeFUN3D directory.
  • Project name (project_rootname member of the project namelist) can now be overridden by the --project_rootname command line argument. Likewise, --adapt_project can be used to override the adapt_project member of the adapt_mechanics namelist.
  • When requesting AFLR3 composite-grid output from the dci_gen preprocessor (rotorcraft simulations with overset grids) the default is now binary/stream (.b8.ugrid) instead of unformatted (.r8.ugrid) in order to accommodate larger meshes.
  • Added the ability for the user to specify arbitrary rigid-grid motion by reading a file containing a time history of transform matrices and “CG” locations.

Bug fixes

  • Fixed an error in 6DOF for the case where the grid is not scaled 1:1 with the actual geometry
  • Fixed an error in the merging procedure used to generate prismatic meshes from tetrahedral VGRID meshes – correctly handle situations where all four nodes of a tetrahedron in the boundary layer lie on the same no-slip surface
  • The configure script is more portable. It tests the capabilities of the Fortran compiler instead of the compiler name. This fixes a configuration problem with gfortran on Ubuntu and SunOS.
  • Adjoint option --outer_loop_krylov now works with y-symmetry boundary condition.
  • Fixed an error in solution output where turbulent residuals were gathered if ‘residuals’ output was requested, even if the case was not a turbulent one.
  • Fixed an error in which the input xml data (for overset cases) could be lost because between calls it did not have the “save” attribute.

Version 11.3-48116—July 2010

Minor Enhancements

  • To better communicate purpose, renamed utils/cogsg_bc_fixie to utils/repair_vgrid_mesh.
  • If bandaids are specified to be used in the ammo.input deck, the design optimization driver will automatically pass the --bandaid command line option to the solvers. Previously, users had to specify this option explicitly in the command_line.options input file.
  • Force and moment components (total) are now computed during temporal subiterations and are output to the {project}_subhist.dat file
  • Stream I/O flow restarts can be read with or without—freeze_limiter regardless of whether—freeze_limiter was used with an earlier run
  • All I/O required at each time step during unsteady adjoint solutions is now performed asynchronously (Fortran2003-compliant compiler required).
  • Added a cost function to match target pressure distributions along a 1D ray in the field.
  • A copy of the current design variables is automatically saved in the Flow/surface_history directory at the start of each function evaluation during a design optimization.
  • Streamlined the process for using only a selected subset of all solid surfaces in a static aeroelastic problem.
  • Added several rotorcraft utility codes to facilitate the conversion of CFD/CSD data into the UH60 P/DB format.
  • Added—adapt_output_metric command line option to write grid adaptation metric to file

Bug fixes

  • Fixed a serious error in how surface mesh sensitivities for bandaid-parameterized bodies were being loaded in the adjoint solver.
  • Fixed component force summation when there are no flow-through boundaries.
  • Fixed cylindrical sampling.
  • Removed a Fortran 2003 stream I/O feature (POS=), which caused intermittent problems when restarting with different number of processors for some compilers. Stream I/O stills works, but it no longer requires the POS= attribute.
  • Fixed two errors in libsmemrd (HI-ARMS actuator disk model)
  • Corrected an over-indexing error when checking grid consistency. Error only occurred for mixed elements cases, where some processors would have no local tetrahedral elements.
  • Fixed an error where force integration on moving bodies did not honor the user input in “remove_boundaries_from_force_totals”
  • Fixed two “errors” in the 6-DOF module.

Other

  • Known issue: If a VGRID mesh contains a tetrahedral element with all 4 vertices located on the same non-viscous boundary patch (i.e., may occur on curved outer boundaries), FUN3D’s prismatic merging procedure can fail. This will be corrected for the next release.

Version 11.2-46848—May 2010

Major Enhancements

  • Added the ability to load NSU3D unformatted files directly into the solver. Corresponding grid_format value for the &raw_grid namelist is ‘nsu3d’. See the section on v11.x pre- and post-processing for detailed information.

Minor Enhancements

  • To conform to Tecplot ascii file extension conventions, [project]_hist.tec has been renamed [project]_hist.dat.
  • The string lists like boundary_list, which specifies boundary patches to output, now accept ranges, e.g., ‘2, 11-87, 93’.
  • If the variable jacobian_eval_freq is specified in the &code_run_control namelist or via the command line option --jupdate, the automated jacobian updating strategy based on ratios of residual norms will be disabled and the specified frequency will be used instead.
  • If family names are available for the boundary groups, they will be propagated into the [project].forces file.
  • Extended the Fieldview grid reader to read formatted Fieldview files with data beyond the “Elements” section.

Bug fixes

  • Solvers will shut down gracefully if invalid boundary numbers are specified to be output.
  • Corrected the binary search algorithm to function correctly when only three input values are provided.
  • Fixed an uninitialized memory read that occasionally caused problems loading adjoint restart files.
  • Corrected bug in configure script for MPICH2 configurations that mistakenly tries to link against non-existent mpi library (-lmpi)

Other

Version 11.1-46128—April 2010

Major Enhancements

  • Added the ability to load Fieldview formatted and unformatted files directly into the solver. Corresponding grid_format value for the &raw_grid namelist is ‘fieldview’. Note that the fieldview_coordinate_precision variable must also be set. See the section on v11.x pre- and post-processing for detailed information.

Minor Enhancements

  • Changed the way that MPI environment is customized in configuration for HPC systems. The environment variables MPIBIN, MPIINC, MPIF90, and MPIRUN have been replaced by the addition of—with-mpibin, —with-mpiinc,—with-mpif90, and—with-mpiexec respectively. These values have defaults similar to previous versions, but now allow the use of—without-mpi* to signal that the value is not available/needed. For example, if no `mpif90` compiler wrapper is required, use —without-mpif90 and the value of FC will be used directly. Also, the new values are relative to the given—with-mpi value unless they contain one or more ”/” whereby they are considered absolute (Eg. —with-mpi=/usr/local—with-mpibin=mpibin—with-mpif90=myf90 implies the MPI compiler wrapper ”/usr/local/mpibin/myf90” whereas —with-mpi=/usr/local—with-mpif90=/opt/myf90 explicitly specifies the compiler wrapper as ”/opt/myf90”).
  • Changed &raw_grid namelist variable from lump (integer) to patch_lumping (character). The previous values of (0,1,2,3) have been mapped to (‘none’,’bc,’family’,’family’).
  • Changed the file extensions for AFLR3 grid files to match the Mississippi State convention: .ugrid is an ASCII file, .r8.ugrid is a double precision unformatted file, and .b8.ugrid is a stream (or C binary) file.
  • BC files for Fieldview and FAST grid files must now have the .mapbc extension (instead of .fvmapbc and .fastbc, respectively), just like VGRID and AFLR3 formats. All .mapbc files may now contain an optional third column containing family names (the exception being VGRID .mapbc files, which always specify a family name in the 6th column). If family names are available, the boundary patches may be grouped using them, as specified by the patch_lumping variable in the &raw_grid namelist.
  • Provide the user better error feedback in the event a restart file read fails.
  • Grid mirroring is now supported for grids loaded directly into the solver.
  • Replaced the non-standard .hst extensions on moving-body output files with .dat, to use the conventional Tecplot extension for ASCII files
  • Slight change in the ddf file naming paradigm to be consistent with the massoud paradigm since they are supposed (or at least originally intended) to be used together
  • Added an option to write MASSOUD data out from the solver – a function formerly performed by party. Basic command line option is —write_massoud_file
  • Added Fieldview and AFLR3 options for component grids in the dci_gen preprocessor for rotorcraft
  • Moved the input data formerly input via the files move_gmres.input and gmres.input into namelists &elasticity_gmres and &flow_gmres, respectively. These namelists are input via the fun3d.nml file
  • Replaced the source-to-node search used for the HI-ARMS actuator disk library with the more robust search developed for the native FUN3D actuator disk library
  • Replaced the non-standard .tec extensions on aeroelastic history (aehist) and aeroelastic surface (aesurf) files with .dat, to use the conventional Tecplot extension for ASCII files
  • Removed the first two, essentially useless, dependent variables from the subhist file, so that tecplot brings up residual vs subiteration by default. Also replaced the non-standard .tec extension on this file with the Tecplot convention, .dat
  • Moved the &slice_data namelist, formerly input via the file slice_global_bndry.input, into the fun3d.nml file
  • Design optimization driver will now use first flow/adjoint solver executables it finds in the user’s PATH, rather than just looking in the current working directory

Bug fixes

  • Fixed a subtle bug in the read/write format of unformatted AFLR3 files to be consistent with the Mississippi State file format definition. MSU website had a slight error in the published file format versus what their tools actually write. This should fix things for users who have had this problem in the past. Existing AFLR3 files written by FUN3D will no longer be readable (if this is a must, get in touch for a workaround).
  • Fixed a parsing problem with the boundary_list variable in the &boundary_output_variables namelist that previously limited the user to very short lists of boundary IDs.
  • Fixed a restart issue for adapted grids with frozen limiters.
  • Now does an immediate stop after an unsuccessful attempt at correcting negative tet cell volumes via edge swapping is made; before the code would continue on for a while before stopping
  • Fixed an issue with sampling output – wasn’t getting written when restarting and using the command line option—sampling_freq -1
  • The replacement for the file kmetis.c for the ParMetis 3.1.1 distribution is now included in the utils directory, as noted in the Third Party Libraries section of the website

Other

  • There are two known issues that arise with the use of the Intel 11.1 compiler. The sequential preprocessing tool party can exhibit problems when constructing the arrays needed for MPI communication. This should not be a problem for most users, as the use of party is seldom required anymore. Also, a problem can occur when reading adjoint restart files. Both of these issues will be addressed in the next release.

Version 11.0-45226—March 2010

Major Enhancements

  • In most cases, the use of party is no longer required as a preprocessing step. Linking to ParMetis library now required for parallel execution: solver loads raw grid formats directly and partitions internally in parallel. Eliminates [project]_part.i and files; restart information contained in a single file. See new sections on v11.0 pre- and post-processing for detailed information, including options to use MPI-IO layer for parallel file I/O on parallel file systems.
  • Continued improvements to computational performance. See these plots for tetrahedral performance relative to earlier releases, and these plots for mixed-element performance. Simulation is transonic flow using recent AIAA DPW tet/mixed grids consisting of roughly 5 million grid points. Run fully-dense on 32 dual-core nodes. Also see this plot for recent scaling study to 8,192 cores using various grids up to 105 million grid points (600 million elements).
  • Incorporated the HI-ARMS/CREATE/HELIOS actuator disk package developed by the DoD for rotor simulations: Software Module for Engineering Methods of Rotor Dynamics (SMEMRD) version 1.3.1. The FUN3D team does not provide technical support for this capability; users must contact Dave O’Brien for usage details. (The legacy FUN3D actuator disk capability previously developed by Dave O’Brien while at Georgia Tech is still also maintained, supported, and documented here on the FUN3D website.)

Minor Enhancements

  • The default value for the UMUSCL coefficient is now 0.5 for all 3D node-centered computations on grids containing element types other than tetrahedra. This value has been recommended practice for several years for such cases, so it was decided to make it the default. Also removed the ability to specify this parameter from the command line. If user wants a different coefficient, it is available via a separate namelist; get in touch for details.
  • Changed default coefficients associated with the BDF2opt temporal scheme. Traditional coefficients of 0.58 and 0.42 for the BDF3 and BDF2 contributions, respectively, may admit instabilities for long-running simulations. Default coefficients are now 0.48 and 0.52, shown both theoretically and numerically to yield stable solutions. See also AIAA Paper 2010-0122.
  • Added sanity/safety checks for periodic cases. Also added—periodic_tol command line option to control the tolerance for the periodic pair search.
  • All input data previously entered in the file namelist.input should now be placed in fun3d.nml. The existence of a namelist.input file will now cause FUN3D to halt execution, with a warning to the screen output.
  • Removed all co-linear discretization options.
  • To ease use and reduce code maintenance, the “getgrad” executable is now obsolete. This tool used to perform the linearizations of the residuals and cost functions with respect to the grid for a subsequent mesh adjoint solve. These operations are now performed at the tail end of the adjoint solver when the ‘—getgrad’ command line option is invoked. The format of rubber.data has changed slightly to reflect this (see template in Adjoint subdirectory of distribution).
  • To ease use and reduce code maintenance, the “gridmove” executable is now obsolete. This tool was formerly used to deform the grid using linear elasticity as requested by a design optimization procedure, as well as to solve the mesh adjoint equations for a sensitivity analysis. These processes are now performed internally in the front end of the flow solver and the back end of the adjoint solver.
  • Since the partitioning and preprocessing steps have been moved into the front end of the solvers, the “pparty” executable is now obsolete.
  • If a tetrahedral mesh deformation procedure fails, an attempt will be made to locally untangle the problematic cells using the refine library if FUN3D has been configured using ‘—with-refine=...’. Plans are to extend this to other element types soon. (requires refine version >= 1.5.0 )
  • Added flow solver option ‘—embed_grid’ to write out a globally-embedded version of the current mesh. This does not project new points onto the true geometry.
  • Added the ability to output Tecplot flow visualization files in a “pass through” operation in the solver. This allows visualization of the current solution in an existing restart file, without advancing the solution in time or altering a the data in the restart file. In this way the solver can act as party used to for post processing, although much faster since the flow solver can be run in parallel. The pass through output is accomplished by specifying steps=0 when running the solver, plus the usual animation output flags.
  • Added support in the rotorcraft utility code “dci_gen” to allow support of FieldView meshes; support for AFLR3 meshes will soon follow. This does require a little extra user input to dci_gen, to specify whether the component grid is a Vgrid mesh or a FieldView mesh, etc.
  • To streamline throughput on rotorcraft cases, the dci_gen code was modified to create the composite mesh with the blades in a “neutral” position, devoid of any flap, collective, or cyclic settings. In the flow solver, when starting from scratch, the blades are “popped” to the correct settings for the case at hand. This allows one composite grid to be used for a particular configuration without having to have a new composite grid for each flight condition.
  • The specification of which boundaries are output when using the —animation_freq option is no longer accomplished using a separate input file (“boundaries_to_animate”). Instead, this is now done in the &boundary_output_variables namelist, via number_boundaries and boundary_list. The existence of a “boundaries_to_animate” file in the working directory will now cause the solver to exit with a message describing the new procedure.
  • Improved the procedures for determining the leading and trailing edges of “sliced” sections
  • Added the RUN_LOOSE_COUPLING (PBS) script for loose coupling of FUN3D and CAMRAD II; this actually makes running a coupled rotorcraft case practical.
  • Added several rotorcraft utility codes for processing FUN3D and CAMRAD output
  • Added another option for setting the modulus of elasticity, —elasticity 5, which uses slen-squared instead of slen. This helps a few problem cases of mesh deformation.
  • Added an option—reuse_existing_dci_files, so that, among other things, dci files generated from a run with (say) a 2x time step can be reused in a computation with a 1x time step; along the same lines added a script to renumber an existing set of dci files for use with a different time step; also along the same lines added—reset_dci_period to do what the name implies in order to change the time step in a time-periodic case.
  • Added the ability to change turb models when running a time accurate simulation

Bug fixes

  • Fixed minor memory problem in tetrahedral VGRID merging procedure
  • Fixed bug in specifying ‘—limit_near_walls_less’ command line option
  • Fixed a bug in the bounding box option for slicing
  • Fixed the—dci_freq option to work in the current code
  • Fixed a bug in the grid metric computations on symmetry planes, that happened (only) if a static grid transform was utilized
  • Fixed a bug in Tecplot output from the solver that prevented correct output of mixed element grids (with more than one cell type)
  • Fixed a bug in feature-based adaptation metric introduced in 10.8 that causes a seg fault

Other

  • FUN3D is now compatible only with SUGGAR++ and not the older SUGGAR code
  • FUN3D now requires refine version 1.5.0 or later for the unravel API
  • FUN3D now requires MPI-2-compliant MPI libraries when building against MPI (most current MPI flavors are MPI-2 compliant)

Version 10.8-41173—July 2009

Major Enhancements

  • Initial release of time-dependent adjoint capability for static, rigidly-moving, and deforming grids. Initial demos shown at the 2009 AIAA CFD Conference (also included as Applications here on the website)
  • Modified mixed-element merging procedure for VGRID meshes to avoid merging rare pathological splayed-open cells in the baseline tetrahedral grid—cures robustness issues in the solver.
  • Disallowing simultaneous merging/lumping in the preprocessor. This was originally how things were set, but the restriction was removed in 10.7. Pathological grid topologies led to this restriction being re-introduced. Users may still lump the resulting mixed element grid as always.
  • Added option to trim merged mixed element prism stacks to same height across entire boundary layer grid, resulting in no pyramids present.
  • Computer science improvements in mixed element viscous flux Jacobians speed routine up by 35%, yields about 20% decrease in overall runtime.
  • Users should see about a 10% reduction in runtime over 10.7 for tetrahedral solutions due to computer science-related improvements.
  • Streamlined the parallel preprocessor (pparty) to accommodate multicore environments, i.e., many processors with limited memory (as little as 1 GB per core). Tests have been successfully performed using up to 8,196 cores and this should extend to higher core counts. The preprocessing time and memory requirements for large grids (30M+ nodes / 180M+ elements) has been greatly reduced. However, grid mirroring and accounting for implicit lines are currently not implemented. Finally, the mixed-element path through pparty is operational but is undergoing further testing. Please report any issues.
  • Implemented overset flowfield adjoint solutions for steady flows.
  • Support for multipoint optimization using NPSOL

Minor Enhancements

  • Updated design optimization documentation and tutorial cases
  • Design driver can now be told the executable name for running MPI jobs, e.g., mpirun, mpiexec, etc.
  • Design driver now stores off history of surface grids for each body at each design iteration
  • Streamlined input for moving overset grids (&composite_overset_mesh namelist now has only one entry: the input XML file used for the static composite mesh generation)
  • Extended periodic boundary condition to handle periodicity in any of the three Cartesian coordinate directions; solver determines periodicity direction by evaluating surface normals on the periodic boundaries

Bug fixes

  • Fixed bug for moving-grid cases requiring “snapping” of symmetry plane boundaries for strong symmetry enforcement
  • Fixed bug in Tecplot binary output
  • Fixed bug related to slicing through prisms using solution sampling surfaces

Version 10.7-37110—February 2009

  • Added support in party for FieldView FV-UNS version 3.0 files; also added support for single-precision unformatted files and corrected reading of multiple element types in unformatted FV-UNS files.
  • Expanded Tecplot output from the flow solver, largely eliminating the need for Party to do most Tecplot-related post processing.
  • Grid metric and distance function computations moved out of Party and into the flow solver, where they are now performed in parallel.
  • Added HRLES model of AIAA 2008-3854
  • Fixed memory problem when running RANS-based design optimization with explicit constraints
  • Added limited periodic BC for 2D grids extruded in spanwise direction
  • Allow for spatial transforms of bodies parameterized using MASSOUD for design optimization
  • Allow multiple bodies to employ the same set of design variables to maintain consistent shape during design optimization (i.e., blades of a rotor)
  • Made the mixed-element merging procedure for tetrahedral VGRID meshes more efficient and eliminated a subtle error that caused rare instances of doubly-bookkept surface faces at odd-shaped adjacent surface patches. Also improved the feedback loop for degenerate cells/metrics to enable iterative re-merging with higher quality elements. Removed restriction on concurrent boundary patch lumping and element merging.
  • Enabled linking to KSOPT, an optional third-party library for design optimization
  • Support for multipoint optimization using PORT, KSOPT
  • Fixed minor bug in adjoint solver associated with noninertial mode and Dacles-Mariani modification to Spalart model
  • Added command line option ‘—store_full_stencil’ to permit storage of complete linearization for adjoint residual computation rather than traditional nearest neighbor approach. Yields roughly a 5x speedup for adjoint solutions.

Version 10.6.0—August 2008

  • Added ‘—alternate_freestream’ command line option to initialize partially-quiescent cases such as rotors in hover in noninertial mode
  • Linearized noninertial mode in design tools (primarily facespeeds and Coriolis terms) – for example, allows design optimization of rotors in hover
  • Minor changes in format of rubber.data control file for design
  • Added and linearized rotorcraft figure of merit function (actually squared, to avoid a sqrt() of a negative lift in the linearizations) as an available cost function in design tools
  • Linearized Dacles-Mariani modification to Spalart model for use in design tools
  • Linearized farfield_pbck boundary condition in design tools
  • Enabled moment coefficients (and/or their pressure/viscous counterparts) to be used as cost functions for compressible flow in design tools
  • Bug fix for moving mesh GCL terms when more than one element type is present
  • Bug fix for nondimensional rotation rate for rotor cases
  • Enable build procedure to correctly accommodate NPSOL as an optional library

Version 10.5.0—May 2008

  • Primary solver input now specified through fun3d.nml namelist file – see section of manual devoted to flow solver input. Translator capability for legacy ginput.faces decks provided.
  • Format for partition files ([project]_part.i) has changed
  • Much improved propulsion-related boundary conditions for inlets/exhaust. See relevant section of manual, tutorials for information.
  • Improved computational efficiency (see tetrahedral speedup and mixed element speedup over last few releases)
  • Corrected minor problem with energy/pressure on the wall for moving grid/noninertial simulations
  • CGNS output support in party; two CGNS translator utility codes also added
  • The party preprocessor has been instrumented with OpenMP. To use in an OpenMP mode, party must be compiled with -openmp; otherwise party defaults to a single thread. Note, only the preprocessing path within party has been instrumented.
  • Overset capability now requires DiRTlib version 1_25 (or later) and SUGGAR version 2_41 or later
  • The command-line option—dci_on_the_fly now utilizes suggar library calls to a separate process run as part of the fun3d run script. A separate suggar executable is not needed. The new suggar library calls mean that the flow solver must be run with one more processor than there are part files. In addition, that processor must be the first processor in the machine file list, and that processor must have sufficient memory to fit the entire hole-cutting process.
  • Adjoint-based design components (which have been omitted from recent releases) are included in this release. Please do not attempt to undertake FUN3D design optimization unless you are extremely comfortable running the flow solver and you have some very powerful hardware at your disposal.

Version 10.4.1—October 2007

  • Fixed fatal bug in actuator disk capability
  • Autotools build process extended to handle IBM AIX systems
  • Since the appropriate fix has now been incorporated in the latest releases of VGRID, the VGRID “bcfix” subroutine is no longer performed on native VGRID meshes by party or pparty to correct numbering issues for viscous surfaces intersecting symmetry planes

Version 10.4—September 2007

  • New standardized installation procedure, based on the use of GNU autotools
  • Party now capable of merging legacy viscous tetrahedral VGRID meshes into prismatic elements in the boundary layer. Activated through the party command-line option—merge_tets. Requires VGRID .poin1 file.
  • Robust mixed-element solutions via command-line option—umuscl 0.5
  • Thin-layer formulation available for mixed-element solutions using command-line option—thin_layer
  • Depending on compiler/solver options and architecture, wallclock time reduction over v10.3.1 can be as high as 67%
  • Default relaxation scheme is now red-black with global consistency across processors.
  • New implementation for total temperature/total pressure boundary condition available for testing
  • Adjoints available for limited set of actuator disk options
  • Central difference plus scalar dissipation available for testing; use IHANE=5 in ginput.faces,—cd_jac to engage Jacobians on LHS, and —scalar_diss_coeffs to specify kappa values
  • Incompressible implementation of specified normal velocity boundary condition now available
  • Party can now read point-matched multiblock structured Plot3D files and convert them to hexes, using neutral map files (.nmf) generated by V2K .
  • CGNS grid input support in party
  • Aeroelastic solutions using mode shapes now available with the command-line option—aeroelastic_internal – see “Time Accurate – Moving Geometry” section of the manual for more information
  • SUGGAR callable from within the flow solver to compute overset connectivity files “on the fly” for applications such as 6DOF
  • A min-mod limiter is available as IFLIM=3
  • Slices (a la the “box5/6” utility codes) can now be output from the flow solver via the command-line option—slice_freq – see “Time Accurate – Basics” section of the manual for more information
  • Multiple postprocessed output files of the Tecplot and/or Fieldview type can now be obtained in a single postprocessing run of party/pparty via the —multiple_output command line option; e.g. both surface and volume tecplot files can be had in the same postprocessing session
  • Solid wall boundaries can model translating and/or rotating boundaries i.e., ground vehicle with moving ground plane and rotating tires. See FUN3D_90/project_name.initbc for an example.
  • Party and PParty default to a more efficient partitioning approach resulting in better load balancing of nodes, cells, and edges.
  • Simple runtime mesh adaptation based on node movement available for testing.
  • Gradient-based mesh adaptation using refine library available for testing. refine is available via the same channels as FUN3D, but is not included with FUN3D.

Version 10.3.1—May 2006

  • Fixed a bug in parallel partitioning that affected SST turbulence model behavior.

Version 10.3.0—May 2006

  • Fixed a bug in repartitioning time-accurate data with party
  • Added static grid transform (translation/rotation) to be performed at the start of a flow solve (leaves part file unchanged). Triggered via the command-line option—grid_transform and requires namelist &grid_transform data to specify the desired transform
  • Added multiple-mirroring capability to party. For example, a 1/4 grid might be mirrored first in z, then in y to create a full, 360 degree grid, via the command-line options—mirror_z—mirror_y
  • Changed mesh/body motion transforms from incremental (from last time step) to transforms from t=0 to unify forced motion, SUGGAR and 6DOF; the input file grid_motion.schedule, previously used to set grid motion parameters, is deprecated – moving_body.input (a namelist file) now serves the same function (and more).

Version 10.2.0—March 2006

  • Corrected long-standing bug in Menter’s SST model. Significantly improves performance of this option (available for INCOMP=0 and 1)
  • Added the ability to optionally initialize “boxes” of the domain to different values than normally set by values in ginput.faces. Can be useful for flowfields with widely varying conditions, such as an external flowfield with a jet nozzle modeled within the moldline of the vehicle. See flow solver input deck section for details.
  • To aid convergence for supersonic flows or other flowfields using a flux limiter, added the ability to “freeze” the flux limiter after a specified number of timesteps. See documentation accompanying IFLIM in the input deck section.
  • Symmetric Gauss-Seidel relaxation now available through the command line option --sgs.
  • Added the mirroring capability into pparty. By invoking pparty with any mirroring command line option (—mirror_x,—mirror_y, or—mirror_z), a (FAST) mirrored grid will be created. That grid can be subsequently partitioned.
  • The repartitioning capability in pparty has been extended to enable users to repartition adjoint files exclusively of other files.

Version 10.1.0—November 2005

  • Added capability to process boundary condition -4000, the laminar patches for turbulent transition flows, to pparty.
  • Slight modification to nonlinear update formulation. New approach lets solution (pressure/density/energy/turbulence) get really close to zero, but never quite get there. Seems to help robustness in some cases that are “on the brink”
  • Percentage value for clipping nonlinear updates during large transients now available via command line with “—meanflow_talp 0.15” (would set value to 15% for mean-flow eqns) and/or “—turb_talp 0.10” (would set value to 10% for turbulence eqns). Note 15% and 10%, respectively, were the hardwired values for prior releases.

Version 10.0.2—July 2005

  • Added capability to extract pressure signatures along rays in the x-direction. User supplies yz-coordinate pairs (as many as desired) via sonic_boom.input file. Pressures are extracted for plotting at every grid face the ray(s) intersect.
  • Added pressure integral on user-defined integration cylinder cutting through the domain as an objective function. See picture.
  • Fixed an error in the initialization of rotor sources for LoadType=1 and LoadType=2. This bug would cause the resultant disk loading to be garbage. This only applies to use of the --rotor command line option.
  • Switched the rotor formulation to be based on rotor tip speed. This prevents the division by zero errors associated with hover cases (XMACH = 0.0).

Version 10.0.1—February 2005

  • Fixed a fatal compilation error for some versions of the Intel compiler
  • Fixed an error in the rotor module that would cause the solver to crash for all loading models except the blade element model.
  • Three components of vorticity, as well as its magnitude, are now available as standard plotting variables in the Tecplot volume file option of party

Version 10.0—February 2005

Due to a new Langley policy, FUN3D has jumped from Version 3.x to Version 10.0 with this release.

  • Incorporation of rotor source terms to model time-averaged behavior of a rotor or propeller. Four loading models are available: uniform, linear variation along the radius, blade element, and a user specified distribution.
  • Revamped the implementation of noninertial (rotating) reference frame; should be viewed as preliminary, but users should be aware that it is different from previous releases. The fundamental difference is that solutions are now obtained for the absolute velocities as seen by an observer in the noninertial frame, rather than for the relative velocities as seen by an observer in the noninertial frame.
  • In concert with the revamped noninertial frame implementation, party now accepts the same command line options for noninertial reference frame solutions as the flow solver. If party is run with these options, it will query the user as to whether the solution file should be output in terms of absolute velocities or relative velocities; if relative velocities are requested, party uses the command line data to make the conversion.
  • Wall temperature in viscous flows can now be input via the command line option --twall temp where temp is the (real) value of the nondimensional wall temperature
  • Initial implementation of a “tunnel inflow” boundary condition in which total pressure, total temperature, and 2 flow angles are specified at a subsonic inflow boundary. The new boundary condition number is 7000, “totalp_totalt”. The values needed for this BC are input via the command line option --tunnel_inflow PT TT aa bb where PT, TT, aa, bb are real values of P_total/P_infty, T_total/T_infty, alpha (degrees), and beta (degrees), respectively at inflow.
  • Added time-accurate capability for incompressible flows – should be viewed as preliminary
  • Added third-order backward differencing in time, “bdf3”, (itime=3), and “bdf2_opt”, (itime=-3), a blend of second and third order schemes. The bdf3 is not fully A-stable, but bdf2_opt is, so it is a good compromise scheme.
  • Added estimate of temporal error for unsteady flows, which may be used to regulate subiteration convergence via the command line option --temporal_err_control temporal_err_floor where temporal_err_floor is the factor by which the subiteration residual should drop below the temporal error estimate before the subiteration loop is exited. A recommended value is temporal_err_floor = 0.1
  • Added “UMUSCL” scheme for inviscid fluxes analogous to “kappa family” of schemes for structured meshes, implemented via the command line --umuscl kappa where kappa is the upwinding parameter: 0.0 gives the baseline FUN3D scheme, 1.0 is central differencing (don’t use 1.0), and 0.5 leads to a third-order inviscid flux on uniform grids in one dimension.
  • Hypersonic path now evaluates heating in the flow solver alongside usual forces and moments, instead of just in party
  • In regards to viscous VGRID meshes having inconsistent connectivity information between the .cogsg and .bc files on symmetry planes: added a party command line option --bcfix_skip_viscous_patches to skip the “fixing” of the viscous patches, as sometimes the extraction of faces on the viscous boundaries will fail to find all the faces, and viscous patches typically do not have advancing layers that need to be “fixed”. Also added a comment when the default extraction fails to give the user a hint that they should try this command line option.

Version 3.3.1—August 2004

  • Bug fixes for the adjoint error estimation and correction --radembed command line option.
  • Interface compatible with refine library version 1.2.1.

Version 3.3—July 2004

  • First release of suite of sensitivity analysis and optimization components: Adjoint solver, Sensitivity analysis, Mesh movement/Mesh adjoint solver, Optimization driver. Requires lots of processors and substantial hands-on experience with the baseline FUN3D flow solver.
  • Massive overhaul to the user manual section of the website
  • Changed ginput.faces input file format (variables ITIME, DT, DTAU, and CONST_DT). See example in FUN3D_90/ginput.faces.
  • Added [project]_subhist.tec output file for time-accurate cases. This Tecplot file contains the subiteration convergence history for the RMS residuals.
  • Added the --partition_lines option in parallel party, which partitions the grid while leaving the implicit lines intact.
  • First release of moving grid capability. At the present time, only a limited number of movement options are available: 1) translation with constant speed, 2) translation with speed sinusoidally varying in time, 3) rotation with constant angular speed, and 4) rotation with angular speed sinusoidally varying in time. At the present time all grid points move with specified function of time, i.e the mesh moves as a rigid body.

Version 3.2.2—April 2004

  • Added blocksize argument to open statements to improve I/O performance with Intel 7.0 compiler. (Must compile with – DINTEL_COMPILER to invoke this argument.)
  • Eliminated duplicated Jacobian elements on off-diagonals for non-simply connected elements—did not affect results, only additional memory and CPU cost
  • Revised and streamlined USE statements to resolve Internal Compiler errors for Intel7.0, Intel7.1, and Intel8.0.
  • Added a routine to synchronize the status of file deletions for distributed files system (i.e., NFS) with program execution.
  • Added parallel repartitioning to the preprocessor (pparty). This allows existing partitions and solutions (including time-accurate) to be repartitioned in parallel.
  • To address I/O issue of writing parallel partition files, added a command line option (--pparty_interleaf) which allows the user to write out selected groups of partition files concurrently. By default, each processor will write it’s partition out concurrently. An interleaf value of 2, will allow 2 processors at a time to write out their partition concurrently. A value of 1, will allow each processor to write out it’s partition alone.
  • Added an option in sequential party to dump out Tecplot data to interface with Dick Campbell’s CDISC tool.

Version 3.2.1—March 2004

  • Added a command line option --lines_unlumped_bcs which uses an alternate line construction for unlumped viscous boundaries. Also added an output file projectname_badlines.tec which dumps out the lines that may be “bad” (under 15 nodes and over 40 nodes long). The original line construction technique may have problems at concave corners if the corners lie along unlumped viscous patch boundaries. The command line option must be used for both party and the flow solver.
  • Added a command line option --turb_transition which will allow for transition to turbulent. The laminar surfaces are marked by boundary groups—use – 4000 or – 4 boundary type. The turbulent production terms are turned off near these boundaries. The laminar nodes in the volume are marked by setting the iflagslen to a negative number. A laminar node is specified if the nearest surface node is on a laminar boundary. The command line is required for the flow solver only. The mesh must be pre-processed with the – 4000 or – 4 boundary flags. This is not functional for the incomp=2 path and works only for SA perfect gas.
  • Added command line option --fviflagslen to output iflagslen (iflagslen<0 for laminar regions) Fieldview file when partitioning (Party Only)
  • Added command line option --cl_const for the flow solver to drive the solution to a constant cl value which is the argument to the command line option. A new tecplot file projectname_alpha.tec will be generated for this type of run. Note this file does not keep track of prior history. If you restart with a cl_const the initial alpha will be read from the restart file. This is not functional for the incomp=2 path.
  • Added laminar, S-A terms on mixed element grids, but not mature yet. 2D ready for experimentation, 3D not robust yet
  • party_metis and party_nometis have been merged into a single executable party. The inclusion of Metis is controlled by the setting of the METISLIBS variable in Makefile.env. Leave blank for party without Metis capability.
  • Parallel version of party, pparty, now available. Useful for partitioning large cases on distributed clusters. (Very memory-conscious, was a showstopper for party.) Requires PARMETISLIBS to be set in Makefile.env. Requires MPI. Not all functionalities of party are in yet—no line-implicit partitioning, multigrid partitioning not complete yet, mixed elements not fully ready, no repartitioning available yet. Suggest using command line inputs, rather than menus. No [project].msh file is created. Run party —pooper_nomsh@ to view results on global grid.
  • Multigrid algorithm now in flow solver—requires explicit family of grids. RANS cases not robust yet.
  • Party can now handle multiple grids in a family through the use of --ngrid [n]. This is for multigrid solutions. The interpolation data will be generated automatically between each successive pair of grids.
  • Can now dump out S-A dependent variable (nu-wiggle) to Fieldview and Tecplot files
  • Added off-diagonal contributions to laminar terms on the boundaries—optional through the command line option --lam_bc_offds. Useful for low-Re applications.
  • General relaxation schedule implemented—control over sweeps in different parts of domain, ordering, etc. Uses additional input deck—ginput.faces is used if new file is not present.
  • Newton-Krylov capability added; don’t use it
  • Initial work done on user-specified profiles on BCs—not ready for general use yet
  • Slight changes to time-accurate stepping
  • Roe Jacobians can now be used by --roe_jac
  • New fluxes/Jacobians implemented: AUFS (IHANE=4), HLLC (IHANE=3). Use --aufs_jac, --hllc_jac for the corresponding Jacobians (instead of default van Leer LHS).

Version 3.2.0—March 2003

  • Removed for perfect gas path BC index 3010, a strong inviscid boundary condition (it doesn’t work for a general case were boundaries are lumped. Also gives suspect results for sharp t.e.)
  • Removed the strong implementation of the viscous porous boundary but left the subroutines in place. Need to go back and re-visit the implementation of the strong b.c.
  • Fixed a bug in the line_solve.f90 module. Added to the dimension max_nodes_in_line so that the start and stop nodes wouldn’t cause a memory overrun in cases where the line is of maximum number of nodes.
  • Mixed-element (hex, prism, pyramid, tet) inviscid solution capability for compressible and incompressible flows.
  • Strongly coupled SA turbulence model for compressible flows.
  • Automatic generation of complex version of the flow solver. (Ruby script)
  • Several new grid input options in Party (Fieldview, NSU3D and AFLR3) that support mixed-element grids.

Version 3.1.5—October 2002

  • Party now handles mixed elements throughout; not meant for general use yet
  • Prismatic extrusion of FUN2D grids in party
  • Weighted partitioning for viscous grids with implicit lines
  • Implemented implicit line solves for compressible viscous flows
  • Build process overhauled to simplify addition/removal of dependencies
  • Pre-processor directives are used for conditional compiling between sequential/parallel, metis/nometis, and compatibility with NAG compiler
  • Vectorization colors have been removed

Version 3.1.4—July 2002

  • Compilation now requires installation of Ruby scripting language
  • ./Configure must be run in the top level directory now to generate Makefile.env for compilation
  • Format of input deck changed—see FUN3D_90/ginput.faces for example
  • Format of restart files changed to hold more data
  • Post-processing of adjoint solution (party)
  • Generation of embedded grid and solution using party
  • Re-factored the Jacobian storage to be compressed row instead of edge based
  • Added command line options to all codes; options can be seen with --help
  • Added additional skin friction routine based on residual balance
  • Continued internal refactoring of party for mixed elements (not ready yet)
  • Improvements continuing for generic gas path algorithms (not ready yet)
  • Added 2-eqn SST turbulence model (not fully tested yet)
  • Optional modification of source term for Spalart model as suggested by Jack Edwards (NC State)
  • Allow separate time step for turbulence and flow equations
  • MPI modules now constructed using a code generator with templates
  • Entire compressible path explicitly declared as double-precision kind (no need for - r8)
  • Party capable of reading Fieldview-format files (under evaluation)
  • Continuous automatic code documentation generation with Ruby RDoc package
  • Added new BC index 4050, a weak viscous boundary condition
  • Added new BC index 3010, a strong inviscid boundary condition

Version 3.1.3—March 2002

  • Fixed non-dimensionalization bug in incompressible moment computation
  • Moved project name into grid derived type
  • Fixed compiler warnings on DEC Alpha/Fort compiler

Version 3.1.2—February 2002

  • Instituted a libs directory that stores all of the common modules that many of the codes share
  • Moved the viscous strong boundary enforcement after all the boundary fluxes have been added to the residual. This is to avoid any conflicts at the boundary interfaces.
  • Added second-order time accuracy. Laminar has been checked out (see picture ), turbulent being evaluated
  • Added option for Detached Eddy Simulation (still to be tested)
  • Added output routine to party to interface with ParMGridGen . The call is commented out, but is there if/when we need it in the future.
  • Added three new viscous boundary conditions:
    • BC 4010—Constant normal mass flux is set on a viscous boundary. (The value of mass flux is set in the bc_types module and is based on non-dimensional density and velocity. These values will eventually be read into the solver via an auxiliary boundary condition input deck.)
    • BC 4020—Constant normal velocity is set on a viscous boundary. (The value of normal velocity is set in the bc_types module and is based on non-dimensional velocity. These values will eventually be read into the solver via an auxiliary boundary condition input deck.)
    • BC 4030—Constant velocity is set on a viscous boundary. (The value of each Cartesian velocity is set in the bc_types module and is based on non-dimensional velocity. These values will eventually be read into the solver via an auxiliary boundary condition input deck.)

      Note these are strong boundary conditions. The surface velocities are initialized at the beginning of the calculation and not updated. For the normal mass flux and velocity conditions the initial normal direction is based on the boundary point normals calculated in the pre-processor.

  • Changed the output format for tecplot files to fifteen digits so that the viscous layers on tightly packed grids don’t get scrambled.
  • Added projected yplus to the tecplot solution output for viscous cases.
  • Added option to dump out entire volume grid in ASCII Tecplot format.
  • Corrected bugs in the rhs and LHS contributions for the compressible viscous boundary fluxes which are added on the inviscid,symmetry and farfield boundaries.
  • Corrected bugs in the LHS contributions for the incompressible viscous boundary fluxes which are added on the inviscid,symmetry and farfield boundaries.

Version 3.1—October 2001

  • First release of reacting gas chemistry capabilities. Note that this option (INCOMP>1) is currently in its very preliminary development stages and should not be executed by the everyday user. This development is being done under the HEFSS element of the FAAST program.
  • Reference temperature was still hardwired at 460 in subroutine edgejp. Now uses value that comes in through info_module.
  • Added new farfield boundary condition for extrapolation for both compressible and incompressible flow. The grid BC index is 2; the corresponding FUN3D BC index is 5005.
  • Added new farfield boundary condition for specifying back pressure. This value is currently set to freestream, but will be user-defined in the near future. This BC is valid only for compressible flow. The grid BC index is 5010; the corresponding FUN3D BC index is also 5010.
  • Explicitly defined boundary normals in party to be of kind my_r8, so the code will successfully do double-precision file I/O on compilers which don’t have a – r8 flag.
  • The dummy “time” variable in the restart file headers is now written out explicitly as kind my_r8. This is also for double-precision file I/O under compilers not having a – r8 option.
  • Added FELISA grids as an input option. The user supplies formatted .fro (boundary mesh) and .bco (boundary conditions) files, as well as a formatted .gri file (volume mesh). The native FELISA boundary types can either be mapped into the FUN3D format, or the FUN3D boundary indices can be entered directly in the .bco file.
  • Added a fix so that FUN3D-style BC indices can be used in the .fastbc or .mapbc files. If legacy boundary indices (<100) are used, they will be converted as usual to FUN3D format.
  • Renumbered options in party main menu for future expansion
  • By setting the number of existing partitions to be a negative value in party, the user can reconstruct solution files based on the grid coordinates contained in the [project]_part files, rather than the .msh file. This is intended to be used when a grid is moved, and only solution files are needed—note that the metrics are not updated, so this option should NOT be used when repartitioning a grid. The everyday user should not require this option.
  • Added a party output option to write out Tecplot surface files for exchange with MASSOUD. The everyday user should not require this option.
  • Modified the skin friction output in the Tecplot output to be based on the sign of the u velocity. This is so that in a separated region, we actually see a “negative” skin friction.
  • Made minor bug fixes in boundary Jacobians for BC types 6010,6011,6012 (the strong symmetry conditions).
  • Added distance function arrays to end of current distance function record in [project]_part files. These are already in .msh file. This was done to speed up computation of derivatives of the distance function for design. The everyday user should not care about this.
  • No longer write out a surface.dat file when partitioning; we now write out [project]_surf.dat from initial grid processing. This is for design purposes; the everyday user should not care about this.
  • The input deck variables are now broadcasted to all processors as they are being read in, rather than all at once at the end of the reading.
  • The .forces file is now written out at every ITERWRT iterations along with the [project]_hist.tec and restart files.
  • Fixed a bug in the Mach number computation in Tecplot output
  • Fixed a couple of Intel F90 compiler warnings

Version 3.0.2—July 2001

  • Fixed several small warnings from the Intel compiler—couple of tabs, 1h format descriptors, unused format statements.
  • Removed extraneous return statements.
  • Added explicit dimensions to thermo_module; was still using assumed-size arrays.
  • When the explicit symmetry plane BC type was added in v3.0.1, the viscous fluxes were being closed off on symmetry plane boundaries, but the “inviscid” portion of the if statement at the top of this loop was overwritten with “symmetry”, rather than “symmetry” simply being added to the end of the if statement in ADDITION to the “inviscid”. This has now been fixed so that the viscous fluxes on both inviscid and symmetry BC types are closed off appropriately.
  • The viscous flux Jacobians have also been modified on the boundaries for inviscid and symmetry BC types. Neither of these were being rigorously closed off before (since the LHS is just an approximation, we were able to get away with it).
  • Symmetry plane BC types have been added for x- and z-planes. These are now BC types 6001 and 6002, respectively.
  • Added strong enforcement of zero crossflow velocities on symmetry planes. These are BC types 6010, 6011, and 6012. They are for y-, x-, and z-symmetry planes, respectively.
  • The title string at the head of the input deck is now used as the zone title for the Tecplot convergence history output.

Version 3.0.1—June 2001

  • Corrected bug in non-dimensionalization of moments. Individual pressure and viscous components were OK; totals were not.
  • Corrected bug in preprocessor. Inviscid VGRID meshes were being sent through a routine intended solely for viscous grids.
  • Added BC Type 6000 for symmetry planes. They are currently treated exactly the same way as Type 3000 (inviscid), but are not included in force/moment computations.

Version 3.0.0—May 2001

  • Constructed to provide an initial foundation for the HEFSS project
  • Full conversion to Fortran 90 and MPI
  • Generalization of boundary condition specification through derived types
  • Much improved usability for first-time users, especially grid pre/post-processing and domain decomposition
  • Explicit version control using CVS

Version 2.0—July 1999

  • Parallelization using SGI shared-memory directives and domain decomposition
  • Design capability developed through the use of discrete adjoints (reverse mode) and complex variables (forward mode)

Version 1.0—June 1993

  • Solves the RANS equations on tetrahedral meshes on a single processor using a node-based scheme. Core numerics performed in Fortran 77, using a C front end for dynamic memory allocation.

Version 0.1—1989

  • Solves the Euler equations on tetrahedral meshes on a single processor using a cell-centered upwind finite-volume scheme and backward-Euler implicit time integration.
  • Implicit scheme eventually incorporated into USM3D.

1.6. Request FUN3D

FUN3D is export restricted and can only be given to a “US Person”. The export restriction is in place because: 1) the code is developed by the US Government at US taxpayer expense, 2) the code can be applied to a wide range of fluid dynamic problems, and 3) a number of code features represent leading-edge technology.

A “US person” is a citizen of United States, a lawful permanent resident alien of the US, or someone in the US as a protected political asylee or under amnesty. The word “person” includes US organizations and entities, such as companies or universities – see 22 CFR 120.15 for the full legal definition.

To request the FUN3D software suite, which will include the refine grid adaptation and mesh untangling library, please fill out a request for FUN3D on the NASA Software Catalog .

Note:If you plan to perform design optimization with FUN3D, you may also wish to request the MASSOUD and/or Bandaids software as well. These are geometry parameterization tools that may be used with FUN3D. If interested, please fill out a request for MASSOUD/Bandaids on the NASA Software Catalog .

1.7. User Manual

The version 14.0.2 PDF user’s manual is available as NASA TM-20230004211.

The version 14.0.1 PDF user’s manual is available as NASA TM-20230004211.

The version 14.0 PDF user’s manual is available as NASA TM-20220017743.

The version 13.7 PDF user’s manual is available as NASA TM-20205010139.

The version 13.6 PDF user’s manual is available as NASA TM-2019-220416.

The version 13.5 PDF user’s manual is available as NASA TM-2019-220271.

The version 13.4 PDF user’s manual is available as NASA TM-2018-220096.

The version 13.3 PDF user’s manual is available as NASA TM-2018-219808.

The version 13.2 PDF user’s manual is available as NASA TM-2017-219661.

The version 13.1 PDF user’s manual is available as NASA TM-2017-219580.

The version 13.0 PDF user’s manual is available as NASA TM-2016-219330.

The version 12.9 PDF user’s manual is available as NASA TM-2016-219012.

The version 12.8 PDF user’s manual is available as NASA TM-2015-218807.

The version 12.7 PDF user’s manual is available as NASA TM-2015-218761.

The version 12.6 PDF user’s manual is available as NASA TM-2015-218690.

The version 12.5 PDF user’s manual is available as NASA TM-2014-218520.

The version 12.4 PDF user’s manual is available as NASA TM-2014-218179.