-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(SetpointManagerMixedAir): add IB_SetpointManagerMixedAir
- Loading branch information
1 parent
66b6efa
commit 86c69a2
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
src/Ironbug.HVAC/SetpointManagers/IB_SetpointManagerMixedAir.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using Ironbug.HVAC.BaseClass; | ||
using OpenStudio; | ||
using System; | ||
|
||
namespace Ironbug.HVAC | ||
{ | ||
public class IB_SetpointManagerMixedAir : IB_SetpointManager | ||
{ | ||
protected override Func<IB_ModelObject> IB_InitSelf => () => new IB_SetpointManagerMixedAir(); | ||
|
||
private static SetpointManagerMixedAir NewDefaultOpsObj(Model model) => new SetpointManagerMixedAir(model); | ||
public IB_SetpointManagerMixedAir() : base(NewDefaultOpsObj(new Model())) | ||
{ | ||
|
||
} | ||
|
||
public override HVACComponent ToOS(Model model) | ||
{ | ||
return base.OnNewOpsObj(NewDefaultOpsObj, model); | ||
} | ||
} | ||
|
||
public sealed class IB_SetpointManagerMixedAir_FieldSet | ||
: IB_FieldSet<IB_SetpointManagerMixedAir_FieldSet, SetpointManagerMixedAir> | ||
{ | ||
private IB_SetpointManagerMixedAir_FieldSet() { } | ||
|
||
} | ||
|
||
|
||
} |