-
Notifications
You must be signed in to change notification settings - Fork 101
Description
Bug description
There's some unexpected behavior in the OpenFAST output file frequency that has crept in recently. Previously, in the OpenFAST fst file, we would have these two parameters:
0.005 DT - Recommended module time step (s)
"default" DT_Out - Time step for tabular output (s) (or "default")
The requirement is that the AMR-Wind dt has to be a fixed multiple of the OpenFAST DT. And by using the "default" for DT_Out, the OpenFAST output file would be written at the OpenFAST dt. This is the expected behavior, and was true when we ran the 16 turbine NREL5MW alm case for HFM in Aug. 2024 (with hash 0230d3a and openfast 3.5).
However, in more recent versions, I've observed that the OpenFAST output has been set by the AMR-Wind timestep, and is incorrectly set on restarting the case, along with spewing some garbage.
An example, annotated snippet of the incorrect AMR-Wind/OpenFAST output is shown below. In this case, the OpenFAST DT=0.005 s, and the AMR-Wind dt=0.02s. I'm only showing the Time and the Wind1VelX columns for clarity.
899.9400 2.872E+00 # OpenFAST output is at every dt=0.02s (not what I expect)
899.9600 2.871E+00
899.9800 2.871E+00
900.0000 2.870E+00 # Original run stops here
864.0000 3.120E+00 # Restart run starts at t=864 sec
864.00500 4.55179E-01 # Restart output dt=0.005s (at the expected frequency, but the output is garbage)
864.01001 4.55179E-01
864.01501 4.55179E-01
864.02002 4.55179E-01
864.0200 3.120E+00 # there's a duplicated output at dt=0.02s with the correct data
864.02502 4.55179E-01
864.03003 4.55179E-01
864.03497 4.55179E-01
864.03998 4.55179E-01
864.0400 3.121E+00
864.04498 4.55179E-01
864.04999 4.55180E-01
864.05499 4.55180E-01
864.06000 4.55180E-01
864.0600 3.121E+00
On restart, OpenFAST switches to the correct output frequency, but the data is garbage. However, there's duplicated output at the AMR-Wind dt which has the correct information. Also note that the restart OpenFAST output cuts out early, and doesn't last for the entire AMR-Wind run (although OpenFAST is running properly, the output file is just terminated early).
Steps to reproduce
Steps to reproduce the behavior:
-
Compiler used
- GCC
- LLVM
- oneapi (Intel)
- nvcc (NVIDIA)
- rocm (AMD)
- with MPI
- other:
-
Operating system
- Linux
- OSX
- Windows
- other (do tell ;)):
-
Hardware:
- CPU
- GPU
-
Machine details ():
These cases were run on Flight at Sandia, but I'm looking for other examples on Frontier, Kestrel, etc. -
Input file attachments
An example of this can be see in the NREL5MW benchmark problem:
https://github.com/Exawind/exawind-benchmarks/blob/main/amr-wind/actuator_line/NREL5MW_ALM_BD/input_files/NREL5MW_ALM_BD_OFv402.inp
https://github.com/Exawind/exawind-benchmarks/blob/main/amr-wind/actuator_line/NREL5MW_ALM_BD/setup/nrel5mw_v402_rosco.yaml
The turbine model setup instructions are here:
https://github.com/Exawind/exawind-benchmarks/blob/main/amr-wind/actuator_line/NREL5MW_ALM_BD/setup/README.md
In this case, OpenFAST is disregarding the explicit DT_Out setting and outputting at the AMR-Wind timestep.
-
Error (paste or attach):
No error observed, but the see the OpenFAST output behavior above. -
If this is a segfault, a stack trace from a debug build (paste or attach):
N/A
Expected behavior
See above description for expected behavior.
AMR-Wind information
The problem has probably crept in somewhere over the last year, but this is the most recent AMR-Wind version I've observed it:
==============================================================================
AMR-Wind (https://github.com/exawind/amr-wind)
AMR-Wind version :: v3.6.0-6-g66a70ff8
AMR-Wind Git SHA :: 66a70ff83c1e3f09147c2b5f1a9e32d9450dd5b0
AMReX version :: 25.05-22-gd3798de0bd81
Exec. time :: Sun Sep 21 20:20:40 2025
Build time :: Jul 22 2025 10:33:02
C++ compiler :: GNU 12.1.0
MPI :: ON (Num. ranks = 3584)
GPU :: OFF
OpenMP :: OFF
Enabled third-party libraries:
NetCDF 4.9.2
OpenFAST 4.1
This software is released under the BSD 3-clause license.
See https://github.com/Exawind/amr-wind/blob/development/LICENSE for details.
------------------------------------------------------------------------------
Tagging @ndevelder on this too.