public static IFitFunction CreateModulusOfOmega()
		{
			HavriliakNegamiModulusRelaxation result = new HavriliakNegamiModulusRelaxation();
			result._useFrequencyInsteadOmega = false;
			result._useFlowTerm = true;

			return result;
		}
예제 #2
0
            public virtual object Deserialize(object o, Altaxo.Serialization.Xml.IXmlDeserializationInfo info, object parent)
            {
                HavriliakNegamiModulusRelaxation s = o != null ? (HavriliakNegamiModulusRelaxation)o : new HavriliakNegamiModulusRelaxation();

                s._useFrequencyInsteadOmega = info.GetBoolean("UseFrequency");
                s._useFlowTerm         = info.GetBoolean("FlowTerm");
                s._logarithmizeResults = info.GetBoolean("LogarithmizeResults");

                return(s);
            }
예제 #3
0
        public static IFitFunction CreateModulusOfOmega()
        {
            var result = new HavriliakNegamiModulusRelaxation
            {
                _useFrequencyInsteadOmega = false,
                _useFlowTerm = true
            };

            return(result);
        }
예제 #4
0
        public static IFitFunction CreateLg10ModulusOfFrequency()
        {
            var result = new HavriliakNegamiModulusRelaxation
            {
                _useFrequencyInsteadOmega = true,
                _useFlowTerm         = true,
                _logarithmizeResults = true
            };

            return(result);
        }
		public static IFitFunction CreateLg10ModulusOfFrequency()
		{
			HavriliakNegamiModulusRelaxation result = new HavriliakNegamiModulusRelaxation();
			result._useFrequencyInsteadOmega = true;
			result._useFlowTerm = true;
			result._logarithmizeResults = true;

			return result;
		}