00001 /* 00002 00003 Copyright (C) University of Oxford, 2005-2009 00004 00005 University of Oxford means the Chancellor, Masters and Scholars of the 00006 University of Oxford, having an administrative office at Wellington 00007 Square, Oxford OX1 2JD, UK. 00008 00009 This file is part of Chaste. 00010 00011 Chaste is free software: you can redistribute it and/or modify it 00012 under the terms of the GNU Lesser General Public License as published 00013 by the Free Software Foundation, either version 2.1 of the License, or 00014 (at your option) any later version. 00015 00016 Chaste is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 00019 License for more details. The offer of Chaste under the terms of the 00020 License is subject to the License being interpreted in accordance with 00021 English Law and subject to any action against the University of Oxford 00022 being under the jurisdiction of the English Courts. 00023 00024 You should have received a copy of the GNU Lesser General Public License 00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>. 00026 00027 */ 00028 00029 00033 #include "RungeKutta2IvpOdeSolver.hpp" 00034 #include "AbstractIvpOdeSolver.hpp" 00035 #include "AbstractOdeSystem.hpp" 00036 #include "OdeSolution.hpp" 00037 00038 //#include <iostream> 00039 #include <vector> 00040 #include <cassert> 00041 00054 void RungeKutta2IvpOdeSolver::CalculateNextYValue(AbstractOdeSystem* pAbstractOdeSystem, 00055 double timeStep, 00056 double time, 00057 std::vector<double>& currentYValues, 00058 std::vector<double>& nextYValues) 00059 { 00060 const unsigned num_equations = pAbstractOdeSystem->GetNumberOfStateVariables(); 00061 00062 // Apply Runge-Kutta 2nd Order method for each timestep in AbstractOneStepIvpSolver. 00063 // Calculates a vector containing the next Y value from the current one for each 00064 // equation in the system. 00065 00066 std::vector<double> k1(num_equations); 00067 std::vector<double>& dy = nextYValues; // re-use memory 00068 00069 // Work out k1 00070 pAbstractOdeSystem->EvaluateYDerivatives(time, currentYValues, dy); 00071 00072 for (unsigned i=0; i<num_equations; i++) 00073 { 00074 k1[i] = timeStep*dy[i]; 00075 k1[i] = k1[i]/2.0+currentYValues[i]; 00076 } 00077 00078 // Work out k2 and new solution 00079 pAbstractOdeSystem->EvaluateYDerivatives(time+timeStep/2.0, k1, dy); 00080 for (unsigned i=0; i<num_equations; i++) 00081 { 00082 nextYValues[i] = currentYValues[i] + timeStep*dy[i]; 00083 } 00084 }