⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 solverwms.hpp

📁 gps源代码
💻 HPP
字号:
/** * @file SolverWMS.hpp * Class to compute the Weighted Least Mean Squares Solution */#ifndef SOLVER_WMS_HPP#define SOLVER_WMS_HPP//============================================================================////  This file is part of GPSTk, the GPS Toolkit.////  The GPSTk 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 2.1 of the License, or//  any later version.////  The GPSTk 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 GPSTk; if not, write to the Free Software Foundation,//  Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA//  //  Dagoberto Salazar - gAGE ( http://www.gage.es ). 2006, 2007////============================================================================#include "SolverLMS.hpp"namespace gpstk{    /** @addtogroup GPSsolutions */    /// @ingroup math      //@{      /**This class computes the Weighted Least Mean Squares Solution of a given equations set.       *        * This class may be used either in a Vector- and Matrix-oriented way, or       * with GNSS data structure objects from "DataStructures" class.       *       * A typical way to use this class with GNSS data structures follows:       *       * @code       *   RinexObsStream rin("ebre0300.02o");  // Data stream       *       *   // More declarations here: Ionospheric and tropospheric models,        *   // ephemeris, etc.       *       *   // Declare the modeler object, setting all the parameters in one pass       *   ModeledPR model(ionoStore, mopsTM, bceStore, TypeID::C1);       *   model.Prepare();     // Set initial position (Bancroft method)       *       *   // Declare a SolverWMS object       *   SolverWMS solverWMS;       *       *   // This object will compute the appropriate MOPS weights       *   ComputeMOPSWeights mopsW(nominalPos, bceStore);       *       *   gnssRinex gRin;       *       *   while(rin >> gRin) {       *      gRin >> model >> mopsW >> solverWMS;       *   }       * @endcode       *       * The "SolverWMS" object will extract all the data it needs from the       * GNSS data structure that is "gRin" and will try to solve the system       * of equations using the Weighted-Least-Mean-Squares method. It will        * also insert back postfit residual data into "gRin" if it successfully       * solves the equation system.       *       * Please note it needs some weights assigned to each satellite. This        * can be achieved with objects from classes such as "ComputeIURAWeights",       * "ComputeMOPSWeights", etc., but in any case this is a mandatory step.       *       * By default, it will build the geometry matrix from the values of        * coefficients dx, dy, dz and cdt, and the independent vector will be       * composed of the code prefit residuals (TypeID::prefitC) values.       *       * You may change the former by redefining the default equation definition        * to be used. For instance:       *       * @code       *   TypeIDSet unknownsSet;       *   unknownsSet.insert(TypeID::dLat);       *   unknownsSet.insert(TypeID::dLon);       *   unknownsSet.insert(TypeID::dH);       *   unknownsSet.insert(TypeID::cdt);       *       *   // Create a new equation definition (independent value, unknowns set)       *   gnssEquationDefinition newEq(TypeID::prefitC, unknownsSet);       *       *   // Reconfigure solver       *   solverWMS.setDefaultEqDefinition(newEq);       * @endcode       *       * @sa SolverBase.hpp and SolverLMS for base classes.       *       */    class SolverWMS : public SolverLMS    {    public:        /// Default constructor. When fed with GNSS data structures, the         /// default the equation definition to be used is the common GNSS         /// code equation.        SolverWMS()        {            // First, let's define a set with the typical unknowns            TypeIDSet tempSet;            tempSet.insert(TypeID::dx);            tempSet.insert(TypeID::dy);            tempSet.insert(TypeID::dz);            tempSet.insert(TypeID::cdt);            // Now, we build the default definition for a common GNSS code equation            defaultEqDef.header = TypeID::prefitC;            defaultEqDef.body = tempSet;        };        /** Explicit constructor. Sets the default equation definition to be used when fed with GNSS data structures.         *         * @param eqDef     gnssEquationDefinition to be used         */        SolverWMS(const gnssEquationDefinition& eqDef)        {            setDefaultEqDefinition(eqDef);        };        /** Compute the Weighted Least Mean Squares Solution of the given equations set.         * @param prefitResiduals   Vector of prefit residuals         * @param designMatrix      Design matrix for the equation system         * @param weightMatrix      Matrix of weights         *         * @return         *  0 if OK         *  -1 if problems arose         */        virtual int Compute(const Vector<double>& prefitResiduals, const Matrix<double>& designMatrix, const Matrix<double>& weightMatrix) throw(InvalidSolver);        /** Compute the Weighted Least Mean Squares Solution of the given equations set.         * @param prefitResiduals   Vector of prefit residuals         * @param designMatrix      Design matrix for the equation system         * @param weightVector      Vector of weights assigned to each satellite.         *         * @return         *  0 if OK         *  -1 if problems arose         */        virtual int Compute(const Vector<double>& prefitResiduals, const Matrix<double>& designMatrix, const Vector<double>& weightVector) throw(InvalidSolver)        {            // First, check that everyting has a proper size            int wSize = (int) weightVector.size();            int pSize = (int) prefitResiduals.size();            if (!(wSize==pSize)) {                InvalidSolver e("prefitResiduals size does not match dimension of weightVector");                GPSTK_THROW(e);            }            Matrix<double> wMatrix(wSize,wSize,0.0);  // Declare a weight matrix            // Fill the weight matrix diagonal with the content of the weight vector            for (int i=0; i<wSize; i++) wMatrix(i,i) = weightVector(i);            // Call the more general SolverWMS::Compute() method            return SolverWMS::Compute(prefitResiduals, designMatrix, wMatrix);        };        /// Compute the Weighted Least Mean Squares Solution of the given equations set.        virtual int Compute(const Vector<double>& prefitResiduals, const Matrix<double>& designMatrix) throw(InvalidSolver)         {            return SolverLMS::Compute(prefitResiduals, designMatrix);        };        /** Returns a reference to a satTypeValueMap object after solving the previously defined equation system.         *         * @param gData     Data object holding the data.         */        virtual satTypeValueMap& processSolver(satTypeValueMap& gData) throw(InvalidSolver);        /// Covariance matrix without weights. This must be used to compute DOP        Matrix<double> covMatrixNoWeight;        /// Destructor.        virtual ~SolverWMS() {};   }; // class SolverWMS   //@}} // namespace#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -