public static IFitFunction CreateModulusOfOmega() { HavriliakNegamiModulusRelaxation result = new HavriliakNegamiModulusRelaxation(); result._useFrequencyInsteadOmega = false; result._useFlowTerm = true; return result; }
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); }
public static IFitFunction CreateModulusOfOmega() { var result = new HavriliakNegamiModulusRelaxation { _useFrequencyInsteadOmega = false, _useFlowTerm = true }; return(result); }
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; }