SEFluidCompartmentLink.h
1/* Distributed under the Apache License, Version 2.0.
2 See accompanying NOTICE file for details.*/
3
4#pragma once
5#include "cdm/compartment/SECompartmentLink.h"
6#include "cdm/substance/SESubstanceTransport.h"
7#include "cdm/compartment/fluid/SEFluidCompartment.h"
8#include "cdm/circuit/fluid/SEFluidCircuitPath.h"
9
10#define FLUID_COMPARTMENT_LINK_TEMPLATE typename EdgeType, typename VertexType, typename CompartmentType
11#define FLUID_COMPARTMENT_LINK_TYPES EdgeType, VertexType, CompartmentType
12
13template<FLUID_COMPARTMENT_LINK_TEMPLATE>
14class SEFluidCompartmentLink : public SECompartmentLink, public EdgeType
15{
16 friend class PBCompartment;//friend the serialization class
17protected:
18 SEFluidCompartmentLink(CompartmentType& src, CompartmentType & tgt, const std::string& name);
19public:
21
22 virtual void Clear();
23
24 virtual const SEScalar* GetScalar(const std::string& name);
25
26 virtual std::string GetName() const { return m_Name; }
27
28 virtual bool HasCompliance() const;
29 virtual double GetCompliance(const VolumePerPressureUnit& unit) const;
30
31 virtual bool HasFlow() const;
33 virtual double GetFlow(const VolumePerTimeUnit& unit) const;
34
35 virtual bool HasResistance() const;
36 virtual double GetResistance(const PressureTimePerVolumeUnit& unit) const;
37
38 virtual CompartmentType& GetSourceCompartment() { return m_SourceCmpt; }
39 virtual CompartmentType& GetTargetCompartment() { return m_TargetCmpt; }
40
41 virtual bool HasPath() { return m_Path != nullptr; }
42 virtual SEFluidCircuitPath* GetPath() { return m_Path; }
43 virtual void RemovePath() { m_Path = nullptr; }
44 virtual void MapPath(SEFluidCircuitPath& path) { Clear(); m_Path = &path; }
45
46protected:
47 // For Transport
48 virtual bool HasFlux() const { return HasFlow(); }
49 virtual SEScalarVolumePerTime& GetFlux() { return GetFlow(); }
50 virtual double GetFlux(const VolumePerTimeUnit& unit) const { return GetFlow(unit); }
51
52 virtual VertexType& GetSourceVertex() { return m_SourceVertex; }
53 virtual VertexType& GetTargetVertex() { return m_TargetVertex; }
54
56 CompartmentType& m_SourceCmpt;
57 CompartmentType& m_TargetCmpt;
58 VertexType& m_SourceVertex;
59 VertexType& m_TargetVertex;
61};
Definition: PBCompartment.h:28
Definition: SEScalarPressureTimePerVolume.h:8
Definition: SEFluidCircuitPath.h:9
Definition: SEScalar.h:19
Definition: SEScalarVolumePerTime.h:31
Definition: SEScalarVolumePerPressure.h:8
Definition: SEScalarVolumePerTime.h:8

Distributed under the Apache License, Version 2.0.

See accompanying NOTICE file for details.