示例#1
0
        public static IFitFunction CreateModulusOfOmega()
        {
            var result = new HavriliakNegamiModulusRetardation
            {
                _useFrequencyInsteadOmega = false,
                _useFlowTerm = true
            };

            return(result);
        }
示例#2
0
        public static IFitFunction CreateLg10ModulusOfFrequency()
        {
            var result = new HavriliakNegamiModulusRetardation
            {
                _useFrequencyInsteadOmega = true,
                _useFlowTerm         = true,
                _logarithmizeResults = true
            };

            return(result);
        }