public bool SetDoppler(double dopplerFre)
        {
            if (cgt == null || !cgt.ParaLimitEst(dopplerFre, ChanGenTool.ChanAssign.gpDopplerFre))
            {
                return(false);
            }

            txtGeneDoppler.Text = dopplerFre.ToString();
            return(true);
        }
        public bool SetPara(double riceK, double riceAOA)
        {
            if (cgt == null || !cgt.ParaLimitEst(riceK, ChanGenTool.ChanAssign.gpRiceK) ||
                !cgt.ParaLimitEst(riceAOA, ChanGenTool.ChanAssign.gpRiceAOA))
            {
                return(false);
            }

            txtGeneRiceK.Text   = riceK.ToString();
            txtGeneRiceAOA.Text = riceAOA.ToString();
            return(true);
        }
Exemple #3
0
        public bool SetDielectric(double dielectric)
        {
            if (cgt == null || !cgt.ParaLimitEst(dielectric, ChanGenTool.ChanAssign.apDielectric))
            {
                return(false);
            }

            txtAeroDielectric.Text = dielectric.ToString();
            return(true);
        }