SEScalarHeatInductance.h
1/* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3
4#pragma once
5#include "cdm/properties/SEScalar.h"
6
7class CDM_DECL HeatInductanceUnit : public CCompoundUnit
8{
9public:
10 HeatInductanceUnit(const std::string& u) : CCompoundUnit(u) {}
12
13 // Please use static units below
16
17 static bool IsValidUnit(const std::string& unit);
18 static const HeatInductanceUnit& GetCompoundUnit(const std::string& unit);
19
21};
22
23class CDM_DECL SEScalarHeatInductance : public SEScalarQuantity<HeatInductanceUnit>
24{
25public:
28};
Definition: CompoundUnit.h:40
CCompoundUnit & operator=(const CCompoundUnit &rhs)
Definition: CompoundUnit.h:132
Definition: SEScalarHeatInductance.h:8
virtual ~HeatInductanceUnit()
Definition: SEScalarHeatInductance.h:11
HeatInductanceUnit(const HeatInductanceUnit &)=delete
static const HeatInductanceUnit K_s_Per_W
Definition: SEScalarHeatInductance.h:20
HeatInductanceUnit(const std::string &u)
Definition: SEScalarHeatInductance.h:10
Definition: SEScalarHeatInductance.h:24
virtual ~SEScalarHeatInductance()
Definition: SEScalarHeatInductance.h:27
SEScalarHeatInductance()
Definition: SEScalarHeatInductance.h:26
Definition: SEScalar.h:209

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.