SEScalarAmountPerTime.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 AmountPerTimeUnit : public CCompoundUnit
8{
9public:
10 AmountPerTimeUnit(const std::string& u) : CCompoundUnit(u) {}
11 virtual ~AmountPerTimeUnit() {}
12
13 // Please use static units below
16
17 static bool IsValidUnit(const std::string& unit);
18 static const AmountPerTimeUnit& GetCompoundUnit(const std::string& unit);
19
26};
27
28class CDM_DECL SEScalarAmountPerTime : public SEScalarQuantity<AmountPerTimeUnit>
29{
30public:
33};
Definition: SEScalarAmountPerTime.h:8
static AmountPerTimeUnit mmol_Per_min
Definition: SEScalarAmountPerTime.h:23
static AmountPerTimeUnit umol_Per_min
Definition: SEScalarAmountPerTime.h:25
static AmountPerTimeUnit pmol_Per_min
Definition: SEScalarAmountPerTime.h:24
AmountPerTimeUnit(const std::string &u)
Definition: SEScalarAmountPerTime.h:10
AmountPerTimeUnit(const AmountPerTimeUnit &)=delete
virtual ~AmountPerTimeUnit()
Definition: SEScalarAmountPerTime.h:11
static AmountPerTimeUnit mol_Per_day
Definition: SEScalarAmountPerTime.h:20
static AmountPerTimeUnit umol_Per_s
Definition: SEScalarAmountPerTime.h:22
static AmountPerTimeUnit mol_Per_s
Definition: SEScalarAmountPerTime.h:21
Definition: CompoundUnit.h:40
CCompoundUnit & operator=(const CCompoundUnit &rhs)
Definition: CompoundUnit.h:132
Definition: SEScalarAmountPerTime.h:29
SEScalarAmountPerTime()
Definition: SEScalarAmountPerTime.h:31
virtual ~SEScalarAmountPerTime()
Definition: SEScalarAmountPerTime.h:32
Definition: SEScalar.h:209

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.