Ejemplo n.º 1
0
        public DOPRI5(DOPCOR dopcor)
        {
            #region Set Dependencies

            this._dopcor = dopcor;
            #endregion
        }
Ejemplo n.º 2
0
        public DOPRI5()
        {
            #region Initialization Common Blocks

            CommonBlock CONDO5 = new CommonBlock(2, 0, 0, 0);
            #endregion
            #region Dependencies (Initialization)

            HINIT  hinit  = new HINIT();
            CDOPRI cdopri = new CDOPRI();
            DOPCOR dopcor = new DOPCOR(hinit, cdopri, CONDO5);
            #endregion
            #region Set Dependencies

            this._dopcor = dopcor;
            #endregion
        }
Ejemplo n.º 3
0
        internal override void InitializeRungeKuttaClasses()
        {
            _hinit = new HINIT();
            _cdopri = new CDOPRI();
            _contd5 = new CONTD5(_CONDO5);
            _dopcor = new DOPCOR(_hinit, _cdopri, _CONDO5);
            this._Dopri5 = new DOPRI5(_dopcor);

            base._RKSolOut = new RKSolOut(this._contd5);
        }
Ejemplo n.º 4
0
        public DOPRI5()
        {
            #region Initialization Common Blocks

            CommonBlock CONDO5 = new CommonBlock(2, 0, 0, 0);
            #endregion
            #region Dependencies (Initialization)

            HINIT hinit = new HINIT();
            CDOPRI cdopri = new CDOPRI();
            DOPCOR dopcor = new DOPCOR(hinit, cdopri, CONDO5);
            #endregion
            #region Set Dependencies

            this._dopcor = dopcor;
            #endregion
        }
Ejemplo n.º 5
0
        public DOPRI5(DOPCOR dopcor)
        {
            #region Set Dependencies

            this._dopcor = dopcor;
            #endregion
        }