summaryrefslogtreecommitdiff
path: root/CSXCAD/src/CSPropDebyeMaterial.h
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2016-07-05 18:02:38 +0200
committerRuben Undheim <ruben.undheim@gmail.com>2016-07-05 18:02:38 +0200
commitef962f6008f25ab7cbd4ca21bcc72b97a1e2d76f (patch)
tree8149bee93d1a3f91d4503bfb3853adac4af0a85e /CSXCAD/src/CSPropDebyeMaterial.h
Imported Upstream version 0.0.34
Diffstat (limited to 'CSXCAD/src/CSPropDebyeMaterial.h')
-rw-r--r--CSXCAD/src/CSPropDebyeMaterial.h91
1 files changed, 91 insertions, 0 deletions
diff --git a/CSXCAD/src/CSPropDebyeMaterial.h b/CSXCAD/src/CSPropDebyeMaterial.h
new file mode 100644
index 0000000..700c439
--- /dev/null
+++ b/CSXCAD/src/CSPropDebyeMaterial.h
@@ -0,0 +1,91 @@
+/*
+* Copyright (C) 2013 Thorsten Liebig (Thorsten.Liebig@gmx.de)
+*
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Lesser General Public License as published
+* by the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public License
+* along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#include "CSProperties.h"
+#include "CSPropDispersiveMaterial.h"
+
+//! Continuous Structure Debye Dispersive Material Property
+/*!
+ This Property can hold information about the special properties of Debye dispersive materials.
+ \todo Add all the other parameter needed by this model
+ */
+class CSXCAD_EXPORT CSPropDebyeMaterial : public CSPropDispersiveMaterial
+{
+public:
+ CSPropDebyeMaterial(ParameterSet* paraSet);
+ CSPropDebyeMaterial(CSProperties* prop);
+ CSPropDebyeMaterial(unsigned int ID, ParameterSet* paraSet);
+ virtual ~CSPropDebyeMaterial();
+
+ //! Get PropertyType as a xml element name \sa PropertyType and GetType
+ virtual const std::string GetTypeXMLString() const {return std::string("DebyeMaterial");}
+
+ //! Set the epsilon plasma frequency
+ void SetEpsDelta(int order, double val, int ny=0) {SetValue(val,EpsDelta[order],ny);}
+ //! Set the epsilon plasma frequency
+ int SetEpsDelta(int order, const std::string val, int ny=0) {return SetValue(val,EpsDelta[order],ny);}
+ //! Get the epsilon plasma frequency
+ double GetEpsDelta(int order, int ny=0) {return GetValue(EpsDelta[order],ny);}
+ //! Get the epsilon plasma frequency as a string
+ const std::string GetEpsDeltaTerm(int order, int ny=0) {return GetTerm(EpsDelta[order],ny);}
+
+ //! Set the epsilon plasma frequency weighting
+ int SetEpsDeltaWeightFunction(int order, const std::string val, int ny) {return SetValue(val,WeightEpsDelta[order],ny);}
+ //! Get the epsilon plasma frequency weighting string
+ const std::string GetEpsDeltaWeightFunction(int order, int ny) {return GetTerm(WeightEpsDelta[order],ny);}
+ //! Get the epsilon plasma frequency weighting
+ double GetEpsDeltaWeighted(int order, int ny, const double* coords) {return GetWeight(WeightEpsDelta[order],ny,coords)*GetEpsDelta(order,ny);}
+
+ //! Set the epsilon relaxation time
+ void SetEpsRelaxTime(int order, double val, int ny=0) {SetValue(val,EpsRelaxTime[order],ny);}
+ //! Set the epsilon relaxation time
+ int SetEpsRelaxTime(int order, const std::string val, int ny=0) {return SetValue(val,EpsRelaxTime[order],ny);}
+ //! Get the epsilon relaxation time
+ double GetEpsRelaxTime(int order, int ny=0) {return GetValue(EpsRelaxTime[order],ny);}
+ //! Get the epsilon relaxation time as a string
+ const std::string GetEpsRelaxTimeTerm(int order, int ny=0) {return GetTerm(EpsRelaxTime[order],ny);}
+
+ //! Set the epsilon relaxation time weighting
+ int SetEpsRelaxTimeWeightFunction(int order, const std::string val, int ny) {return SetValue(val,WeightEpsRelaxTime[order],ny);}
+ //! Get the epsilon relaxation time weighting string
+ const std::string GetEpsRelaxTimeWeightFunction(int order, int ny) {return GetTerm(WeightEpsRelaxTime[order],ny);}
+ //! Get the epsilon relaxation time weighting
+ double GetEpsRelaxTimeWeighted(int order, int ny, const double* coords) {return GetWeight(WeightEpsRelaxTime[order],ny,coords)*GetEpsRelaxTime(order,ny);}
+
+ virtual void Init();
+ virtual bool Update(std::string *ErrStr=NULL);
+
+ virtual bool Write2XML(TiXmlNode& root, bool parameterised=true, bool sparse=false);
+ virtual bool ReadFromXML(TiXmlNode &root);
+
+ virtual void ShowPropertyStatus(std::ostream& stream);
+
+protected:
+ virtual void InitValues();
+ virtual void DeleteValues();
+ //! Epsilon delta
+ ParameterScalar** EpsDelta;
+ //! Epsilon delta weighting functions
+ ParameterScalar** WeightEpsDelta;
+
+ //! Relaxation times for epsilon
+ ParameterScalar** EpsRelaxTime;
+ //! Relaxation times for epsilon weighting functions
+ ParameterScalar** WeightEpsRelaxTime;
+};