OpenPronghorn System Design Description
This template follows INL template TEM-140, "IT System Design Description."
This document serves as an addendum to Framework System Design Description and captures information for SDD specific to the OpenPronghorn application.
Introduction
The document must include the "introduction" template item, this can be included by adding the following to the markdown file (sqa/open_pronghorn_sdd.md):
!template! item key=introduction
Include text (in MooseDocs format) regarding the "introduction" template item here.
!template-end!System Purpose
The Software Design Description provided here is description of each object in the system. The pluggable architecture of the underlying framework of OpenPronghorn makes MOOSE and MOOSE-based applications straightforward to develop as each piece of end-user (developer) code that goes into the system follows a well-defined interface for the underlying systems that those object plug into. These descriptions are provided through developer-supplied "markdown" files that are required for all new objects that are developed as part of OpenPronghorn. More information about the design documentation for MOOSE-based applications like OpenPronghorn can be found in Documenting MOOSE.
System Scope
Delineate the following:
Identify the product(s) to be produced by name (Network Infrastructure, Host DBMS, Report Generator, HPC Server, etc.)
Explain what the product(s) will, and, if necessary, will not do.
Describe the application of the product being specified, including relevant benefits, objectives, and goals.
Be consistent with similar statements in higher level specifications (e.g., business requirements specification).
The document must include the "system-scope" template item, this can be included by adding the following to the markdown file (sqa/open_pronghorn_sdd.md):
!template! item key=system-scope
Include text (in MooseDocs format) regarding the "system-scope" template item here.
!template-end!Dependencies and Limitations
List the dependencies or limitations that may affect the design of the system. Examples include budget and schedule constraints, staffing issues, availability of components, etc. Describe how each factor will affect the functional design.
The document must include the "dependencies-and-limitations" template item, this can be included by adding the following to the markdown file (sqa/open_pronghorn_sdd.md):
!template! item key=dependencies-and-limitations
Include text (in MooseDocs format) regarding the "dependencies-and-limitations" template item here.
!template-end!Definitions and Acronyms
This section defines, or provides the definition of, all terms and acronyms required to properly understand this specification.
Definitions
Pull (Merge) Request: A proposed change to the software (e.g. usually a code change, but may also include documentation, requirements, design, and/or testing).
Baseline: A specification or product (e.g., project plan, maintenance and operations (M&O) plan, requirements, or design) that has been formally reviewed and agreed upon, that thereafter serves as the basis for use and further development, and that can be changed only by using an approved change control process (NQA-1, 2009).
Validation: Confirmation, through the provision of objective evidence (e.g., acceptance test), that the requirements for a specific intended use or application have been fulfilled (24765:2010(E), 2010).
Verification: (1) The process of: evaluating a system or component to determine whether the products of a given development phase satisfy the conditions imposed at the start of that phase. (2) Formal proof of program correctness (e.g., requirements, design, implementation reviews, system tests) (24765:2010(E), 2010).
Acronyms
| Acronym | Description |
|---|---|
| API | Application Programming Interface |
| FE | finite element |
| HIT | Hierarchical Input Text |
| HPC | High Performance Computing |
| I/O | Input/Output |
| INL | Idaho National Laboratory |
| MOOSE | Multiphysics Object Oriented Simulation Environment |
| MPI | Message Passing Interface |
| SDD | Software Design Description |
Design Stakeholders and Concerns
Design Stakeholders
Identify the stakeholders of the IT system design.
The document must include the "design-stakeholders" template item, this can be included by adding the following to the markdown file (sqa/open_pronghorn_sdd.md):
!template! item key=design-stakeholders
Include text (in MooseDocs format) regarding the "design-stakeholders" template item here.
!template-end!Stakeholder Design Concerns
Concerns from many of the stakeholders are similar. These concerns include correctness, stability, and performance. The mitigation plan for each of these can be addressed. For correctness, OpenPronghorn development requires either regression or unit testing for all new code added to the repository. The project contains several comparisons against analytical solutions where possible and also other verification methods such as MMS. For stability, OpenPronghorn maintains multiple branches to incorporate several layers of testing both internally and for dependent applications. Finally, performance tests are also performed as part of the the normal testing suite to monitor code change impacts to performance.
System Design
For this section, detail should be commensurate with the level of risk and demonstrate the fulfillment of requirements providing guidance for implementation.
For custom developed software (see def. in LWP-13620) activities, the following is required:
The documented design shall include, as applicable:
Numerical methods
Mathematical models
Physical models
Control flow
Control logic
Data flow
Process flow
Data structures
Process structures
Applicable relationships between data structures and process structures
In addition, for safety software consider:
Principles of simplicity, decoupling, and isolation to eliminate hazards. Safety features should be separate from nonsafety modules minimizing the impact of failure of one module on another. Techniques, such as failure modes and effects analysis, fault-tree modeling, event-tree modeling, cause-consequence diagrams, hazard and operability analysis, and interface analysis.
The document must include the "system-design" template item, this can be included by adding the following to the markdown file (sqa/open_pronghorn_sdd.md):
!template! item key=system-design
Include text (in MooseDocs format) regarding the "system-design" template item here.
!template-end!System Structure
Decompose the system into design entities or objects that will interact with and transform data to perform the required system objectives. Assign a unique name to each design entity, and group entities by type (e.g., class, object, procedure). Describe how each design entity satisfies system requirements. In user terminology, specify the inputs, outputs, and transformation rules for each design entity. Depict how design entities depend on one another.
The document must include the "system-structure" template item, this can be included by adding the following to the markdown file (sqa/open_pronghorn_sdd.md):
!template! item key=system-structure
Include text (in MooseDocs format) regarding the "system-structure" template item here.
!template-end!Data Design and Control
At a high level, the system is designed to process HIT input files to construct several objects that will constitute an FE simulation. Some of the objects in the simulation may in turn load other file-based resources to complete the simulation. Examples include meshes or data files. The system will then assemble systems of equations and solve them using the libraries of the Code Platform. The system can then output the solution in one or more supported output formats commonly used for visualization.
Human-Machine Interface Design
The OpenPronghorn application is a command-line driven program. All interaction with OpenPronghorn is ultimately done through the command line. This is typical for HPC applications that use the MPI interface for running on super computing clusters. Optional GUIs may be used to assist in creating input files and launching executables on the command line.
System Design Interface
All external system interaction is performed either through file I/O or through local API calls. Neither OpenPronghorn, nor the MOOSE framework, nor the MOOSE modules are designed to interact with any external system directly through remote procedure calls. Any code to code coupling performed using the framework are done directly through API calls either in a static binary or after loading shared libraries.
Security Structure
The OpenPronghorn application does not require any elevated privileges to operate and does not run any stateful services, daemons or other network programs. Distributed runs rely on the MPI library.
Requirements Cross-Reference
- open_pronghorn: kEpsilonViscosity
- 2.1.1The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.2The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.3The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.4The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.5The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.6The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.7The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.8The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.9The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.10The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.11The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.12The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.13The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.14The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.15The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.16The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.17The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.18The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.19The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.20The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.21The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.22The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.23The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.24The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.25The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.26The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.27The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.28The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.29The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Xu two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.30The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.31The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.32The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.33The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.34The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.35The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.36The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.37The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.38The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.39The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.40The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant.
Specification(s): lid-driven_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.41The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standard_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.42The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): lid-driven_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.43The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardlowre_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.44The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant.
Specification(s): lid-driven_k_epsilon_standardtwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.45The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardtwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.46The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant.
Specification(s): lid-driven_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.47The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizable_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.48The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant.
Specification(s): lid-driven_k_epsilon_realizabletwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.49The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizabletwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.50The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with bulk wall treatment.
Specification(s): channel_ERCOFTAC_bulk_treatment
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.51The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with turbulent buoyancy and compressibility corrections.
Specification(s): channel_ERCOFTAC_buoyant
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.52The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel using low-Reynolds number production corrections.
Specification(s): channel_ERCOFTAC_low_Re
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.53The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers with curvature corrections for production.
Specification(s): lid-driven-curvature-corrected
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.54The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Newton equilibrium wall treatment.
Specification(s): channel_ERCOFTAC_wall_newton
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.55The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using incremental equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_incremental
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.56The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using linearized equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_linearized
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.57The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using non-equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_neq
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- open_pronghorn: kEpsilonTKEDSourceSink
- 2.1.1The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.2The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.3The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.4The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.5The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.6The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.7The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.8The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.9The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.10The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.11The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.12The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.13The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.14The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.15The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.16The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.17The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.18The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.19The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.20The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.21The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.22The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.23The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.24The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.25The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.26The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.27The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.28The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.29The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Xu two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.30The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.31The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.32The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.33The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.34The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.35The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.36The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.37The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.38The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.39The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.40The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant.
Specification(s): lid-driven_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.41The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standard_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.42The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): lid-driven_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.43The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardlowre_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.44The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant.
Specification(s): lid-driven_k_epsilon_standardtwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.45The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardtwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.46The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant.
Specification(s): lid-driven_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.47The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizable_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.48The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant.
Specification(s): lid-driven_k_epsilon_realizabletwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.49The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizabletwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.50The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with bulk wall treatment.
Specification(s): channel_ERCOFTAC_bulk_treatment
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.51The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with turbulent buoyancy and compressibility corrections.
Specification(s): channel_ERCOFTAC_buoyant
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.52The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel using low-Reynolds number production corrections.
Specification(s): channel_ERCOFTAC_low_Re
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.53The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers with curvature corrections for production.
Specification(s): lid-driven-curvature-corrected
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.54The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Newton equilibrium wall treatment.
Specification(s): channel_ERCOFTAC_wall_newton
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.55The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using incremental equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_incremental
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.56The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using linearized equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_linearized
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.57The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using non-equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_neq
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- open_pronghorn: kEpsilonTKESourceSink
- 2.1.1The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.2The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.3The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.4The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.5The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.6The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.7The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.8The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.9The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.10The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.11The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.12The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.13The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.14The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.15The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.16The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.17The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.18The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.19The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.20The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.21The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.22The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.23The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.24The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.25The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.26The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.27The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.28The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.29The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Xu two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.30The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.31The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.32The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.33The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.34The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.35The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.36The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.37The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.38The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.39The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.40The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant.
Specification(s): lid-driven_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.41The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standard_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.42The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): lid-driven_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.43The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardlowre_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.44The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant.
Specification(s): lid-driven_k_epsilon_standardtwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.45The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardtwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.46The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant.
Specification(s): lid-driven_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.47The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizable_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.48The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant.
Specification(s): lid-driven_k_epsilon_realizabletwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.49The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizabletwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.50The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with bulk wall treatment.
Specification(s): channel_ERCOFTAC_bulk_treatment
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.51The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with turbulent buoyancy and compressibility corrections.
Specification(s): channel_ERCOFTAC_buoyant
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.52The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel using low-Reynolds number production corrections.
Specification(s): channel_ERCOFTAC_low_Re
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.53The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers with curvature corrections for production.
Specification(s): lid-driven-curvature-corrected
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.54The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Newton equilibrium wall treatment.
Specification(s): channel_ERCOFTAC_wall_newton
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.55The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using incremental equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_incremental
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.56The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using linearized equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_linearized
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.57The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using non-equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_neq
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- open_pronghorn: WallDistanceAux
- 2.1.1The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.2The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.3The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.4The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.5The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.6The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Standard variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standard_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.7The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.8The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.9The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.10The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.11The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.12The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardLowRe variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardlowre_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.13The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.14The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.15The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.16The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.17The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.18The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.19The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.20The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using StandardTwoLayer variant, Wolfstein two-layer flavor, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_standardtwolayer_wolfstein_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.21The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.22The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.23The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.24The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.25The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.26The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Realizable variant, cubic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizable_cubic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.27The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Wolfstein two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.28The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and NorrisReynolds two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.29The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant and Xu two-layer flavor.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.30The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.31The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.32The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.33The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.34The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.35The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, and quadratic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.36The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.37The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Xu two-layer flavor, quadratic non-linear model, and YAP correction.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_xu_quadratic_yap
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.38The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, Wolfstein two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_wolfstein_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.39The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using RealizableTwoLayer variant, NorrisReynolds two-layer flavor, and cubic non-linear model.
Specification(s): channel_ERCOFTAC_k_epsilon_realizabletwolayer_norrisreynolds_cubic
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.40The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant.
Specification(s): lid-driven_k_epsilon_standard
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.41The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Standard variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standard_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.42The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant.
Specification(s): lid-driven_k_epsilon_standardlowre
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.43The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardLowRe variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardlowre_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.44The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant.
Specification(s): lid-driven_k_epsilon_standardtwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.45The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using StandardTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_standardtwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.46The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant.
Specification(s): lid-driven_k_epsilon_realizable
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.47The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using Realizable variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizable_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.48The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant.
Specification(s): lid-driven_k_epsilon_realizabletwolayer
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.49The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers using RealizableTwoLayer variant and Low-Re Gprime correction.
Specification(s): lid-driven_k_epsilon_realizabletwolayer_lowreGprime
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.50The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with bulk wall treatment.
Specification(s): channel_ERCOFTAC_bulk_treatment
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.51The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with turbulent buoyancy and compressibility corrections.
Specification(s): channel_ERCOFTAC_buoyant
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.52The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel using low-Reynolds number production corrections.
Specification(s): channel_ERCOFTAC_low_Re
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.53The system shall be able to solve turbulent lid-driven cavity flow using the k-epsilon turbulence model and reach converged results with segregated solvers with curvature corrections for production.
Specification(s): lid-driven-curvature-corrected
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.54The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using Newton equilibrium wall treatment.
Specification(s): channel_ERCOFTAC_wall_newton
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.55The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using incremental equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_incremental
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.56The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using linearized equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_linearized
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.1.57The system shall be able to solve fluid flow problems with k-epsilon turbulence model for a standard channel with linear FV discretization, and reach converged results with segregated solvers using non-equilibrium wall functions.
Specification(s): channel_ERCOFTAC_wall_neq
Design: kEpsilonViscositykEpsilonTKEDSourceSinkkEpsilonTKESourceSinkWallDistanceAux
Issue(s): #50
Collection(s): FUNCTIONAL
Type(s): CSVDiff
- 2.3.1The system shall be able to compute the distance from prescribed boundaries in meshes that are
- replicated and
- distributed.
Specification(s): wall_distance/replicated, wall_distance/distributed
Design: WallDistanceAux
Issue(s): #66
Collection(s): FUNCTIONAL
Type(s): Exodiff