Skip to content

Commit

Permalink
Few typos in new ft.
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-robertson committed Feb 3, 2025
1 parent b3235b7 commit 7ba0733
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/energyplus/ForwardTranslator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,9 @@ namespace energyplus {

boost::optional<IdfObject> translateCoilSystemCoolingWaterHeatExchangerAssisted(model::CoilSystemCoolingWaterHeatExchangerAssisted& modelObject);

boost::optional<IdfObject>
translateCoilSystemCoolingWaterHeatExchangerAssistedWithoutUnitary(model::CoilSystemCoolingWaterHeatExchangerAssisted& modelObject);

boost::optional<IdfObject> translateCoilSystemIntegratedHeatPumpAirSource(model::CoilSystemIntegratedHeatPumpAirSource& modelObject);

boost::optional<IdfObject> translateCoilUserDefined(model::CoilUserDefined& modelObject);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

#include "../../model/Model.hpp"
#include "../../utilities/core/Assert.hpp"
#include <utilities/idd/CoilSystem_Cooling_Water_FieldEnums.hxx>
#include <utilities/idd/CoilSystem_Cooling_Water_HeatExchangerAssisted_FieldEnums.hxx>
#include <utilities/idd/HeatExchanger_AirToAir_SensibleAndLatent_FieldEnums.hxx>
#include <utilities/idd/Coil_Cooling_Water_FieldEnums.hxx>
Expand All @@ -41,8 +42,8 @@ namespace openstudio {

namespace energyplus {

boost::optional<IdfObject>
ForwardTranslator::translateCoilSystemCoolingWaterHeatExchangerAssistedWithoutUnitary(CoilSystemCoolingWaterHeatExchangerAssisted& modelObject) {
boost::optional<IdfObject> ForwardTranslator::translateCoilSystemCoolingWaterHeatExchangerAssistedWithoutUnitary(
model::CoilSystemCoolingWaterHeatExchangerAssisted& modelObject) {

IdfObject idfObject = createRegisterAndNameIdfObject(openstudio::IddObjectType::CoilSystem_Cooling_Water_HeatExchangerAssisted, modelObject);

Expand Down Expand Up @@ -157,7 +158,8 @@ namespace energyplus {
return idfObject;
}

boost::optional<IdfObject> ForwardTranslator::translateCoilSystemCoolingWaterHeatExchangerAssisted(CoilCoolingWater& modelObject) {
boost::optional<IdfObject>
ForwardTranslator::translateCoilSystemCoolingWaterHeatExchangerAssisted(CoilSystemCoolingWaterHeatExchangerAssisted& modelObject) {
IdfObject coilSystemCoolingWaterIdf(IddObjectType::CoilSystem_Cooling_Water);

m_idfObjects.push_back(coilSystemCoolingWaterIdf);
Expand Down

0 comments on commit 7ba0733

Please sign in to comment.