mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
added coneInjection to thermo and reacting parcels
This commit is contained in:
@ -26,8 +26,9 @@ License
|
||||
|
||||
#include "basicReactingParcel.H"
|
||||
#include "ReactingCloud.H"
|
||||
#include "ManualInjection.H"
|
||||
#include "NoInjection.H"
|
||||
#include "ManualInjection.H"
|
||||
#include "ConeInjection.H"
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
@ -35,6 +36,12 @@ namespace Foam
|
||||
|
||||
// Add instances of injection model to the table
|
||||
makeInjectionModelType
|
||||
(
|
||||
NoInjection,
|
||||
KinematicCloud,
|
||||
basicReactingParcel
|
||||
);
|
||||
makeInjectionModelType
|
||||
(
|
||||
ManualInjection,
|
||||
KinematicCloud,
|
||||
@ -42,7 +49,7 @@ namespace Foam
|
||||
);
|
||||
makeInjectionModelType
|
||||
(
|
||||
NoInjection,
|
||||
ConeInjection,
|
||||
KinematicCloud,
|
||||
basicReactingParcel
|
||||
);
|
||||
|
||||
@ -28,6 +28,7 @@ License
|
||||
#include "ThermoCloud.H"
|
||||
#include "NoInjection.H"
|
||||
#include "ManualInjection.H"
|
||||
#include "ConeInjection.H"
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
@ -37,6 +38,8 @@ namespace Foam
|
||||
makeInjectionModelType(NoInjection, KinematicCloud, basicThermoParcel);
|
||||
|
||||
makeInjectionModelType(ManualInjection, KinematicCloud, basicThermoParcel);
|
||||
|
||||
makeInjectionModelType(ConeInjection, KinematicCloud, basicThermoParcel);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user