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 
7 class CDM_DECL HeatInductanceUnit : public CCompoundUnit
8 {
9 public:
10  HeatInductanceUnit(const std::string& u) : CCompoundUnit(u) {}
11  virtual ~HeatInductanceUnit() {}
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 
23 class CDM_DECL SEScalarHeatInductance : public SEScalarQuantity<HeatInductanceUnit>
24 {
25 public:
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:208

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.