Files
openfoam/etc/caseDicts/annotated/ROMfieldsDict
2025-06-27 09:46:28 +01:00

60 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2506 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object ROMfieldsDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Mandatory entries
// Type of reduced-order model
ROMmodel DMD;
// Name of reconstructed field
field U;
// Name of operand function object
object stdmd02;
// Time-step size of DMD
deltaT 0.5;
// Time instant in which modes are located
time 200;
// List of mode indices
modes (0 1 2 3 4 5);
// Amplitude coefficients (complex)
amplitudes
(
// real imag
// (1e-01 2e-02)
);
// Eigenvalues (complex)
eigenvalues
(
// real imag
// (1e-01 2e-02)
);
// Optional entries
// Start time for mode-information collection
startTime 10;
// Dimensions of reconstructed fields
dimensions [0 1 -1 0 0 0 0];
// ************************************************************************* //