mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Corrected template argument for cloud typedefs
This commit is contained in:
@ -42,13 +42,31 @@ Description
|
|||||||
|
|
||||||
namespace Foam
|
namespace Foam
|
||||||
{
|
{
|
||||||
typedef ReactingMultiphaseCloud<BasicReactingParcel<constGasThermoPhysics> >
|
typedef ReactingMultiphaseCloud
|
||||||
|
<
|
||||||
|
BasicReactingMultiphaseParcel
|
||||||
|
<
|
||||||
|
constGasThermoPhysics
|
||||||
|
>
|
||||||
|
>
|
||||||
constThermoReactingMultiphaseCloud;
|
constThermoReactingMultiphaseCloud;
|
||||||
|
|
||||||
typedef ReactingMultiphaseCloud<BasicReactingParcel<gasThermoPhysics> >
|
typedef ReactingMultiphaseCloud
|
||||||
|
<
|
||||||
|
BasicReactingMultiphaseParcel
|
||||||
|
<
|
||||||
|
gasThermoPhysics
|
||||||
|
>
|
||||||
|
>
|
||||||
thermoReactingMultiphaseCloud;
|
thermoReactingMultiphaseCloud;
|
||||||
|
|
||||||
typedef ReactingMultiphaseCloud<BasicReactingParcel<icoPoly8ThermoPhysics> >
|
typedef ReactingMultiphaseCloud
|
||||||
|
<
|
||||||
|
BasicReactingMultiphaseParcel
|
||||||
|
<
|
||||||
|
icoPoly8ThermoPhysics
|
||||||
|
>
|
||||||
|
>
|
||||||
icoPoly8ThermoReactingMultiphaseCloud;
|
icoPoly8ThermoReactingMultiphaseCloud;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user