1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
Copyright (C) 2011 Klaus Spanderen
This file is part of QuantLib, a free-software/open-source library
for financial quantitative analysts and developers - http://quantlib.org/
QuantLib is free software: you can redistribute it and/or modify it
under the terms of the QuantLib license. You should have received a
copy of the license along with this program; if not, please email
<quantlib-dev@lists.sf.net>. The license is also available online at
<https://www.quantlib.org/license.shtml>.
This program 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 license for more details.
*/
/*! \file fdmexpoujumpop.cpp
\brief Kluge process (power) plus Ornstein Uhlenbeck process (gas)
*/
#include <ql/quotes/simplequote.hpp>
#include <ql/termstructures/yieldtermstructure.hpp>
#include <ql/termstructures/yield/flatforward.hpp>
#include <ql/methods/finitedifferences/meshers/fdmmesher.hpp>
#include <ql/experimental/processes/klugeextouprocess.hpp>
#include <ql/experimental/processes/extouwithjumpsprocess.hpp>
#include <ql/experimental/processes/extendedornsteinuhlenbeckprocess.hpp>
#include <ql/experimental/finitedifferences/fdmextoujumpop.hpp>
#include <ql/experimental/finitedifferences/fdmklugeextouop.hpp>
#include <ql/methods/finitedifferences/operators/fdmlinearoplayout.hpp>
#include <ql/experimental/finitedifferences/fdmextendedornsteinuhlenbeckop.hpp>
#include <ql/methods/finitedifferences/operators/secondordermixedderivativeop.hpp>
namespace QuantLib {
FdmKlugeExtOUOp::FdmKlugeExtOUOp(
const ext::shared_ptr<FdmMesher>& mesher,
const ext::shared_ptr<KlugeExtOUProcess>& klugeOUProcess,
const ext::shared_ptr<YieldTermStructure>& rTS,
const FdmBoundaryConditionSet& bcSet,
Size integroIntegrationOrder)
: mesher_ (mesher),
kluge_ (klugeOUProcess->getKlugeProcess()),
extOU_ (klugeOUProcess->getExtOUProcess()),
rTS_ (rTS),
bcSet_ (bcSet),
klugeOp_(new FdmExtOUJumpOp(mesher, kluge_, rTS, bcSet,
integroIntegrationOrder)),
ouOp_ (new FdmExtendedOrnsteinUhlenbeckOp(
mesher, extOU_,
ext::shared_ptr<YieldTermStructure>(
new FlatForward(rTS->referenceDate(),
Handle<Quote>(ext::shared_ptr<Quote>(
new SimpleQuote(0.0))),
rTS->dayCounter())),
bcSet, 2)),
corrMap_(SecondOrderMixedDerivativeOp(0, 2, mesher).mult(
Array(mesher->layout()->size(),
klugeOUProcess->rho()*extOU_->volatility()
*kluge_->getExtendedOrnsteinUhlenbeckProcess()
->volatility())))
{ }
Size FdmKlugeExtOUOp::size() const {
return mesher_->layout()->dim().size();
}
void FdmKlugeExtOUOp::setTime(Time t1, Time t2) {
ouOp_->setTime(t1, t2);
klugeOp_->setTime(t1, t2);
}
Array FdmKlugeExtOUOp::apply(const Array& r) const {
return ouOp_->apply(r) + klugeOp_->apply(r) + corrMap_.apply(r);
}
Array FdmKlugeExtOUOp::apply_mixed(const Array& r) const {
return corrMap_.apply(r) + klugeOp_->apply_mixed(r);
}
Array FdmKlugeExtOUOp::apply_direction(Size direction,
const Array& r) const {
return klugeOp_->apply_direction(direction, r)
+ ouOp_->apply_direction(direction, r);
}
Array FdmKlugeExtOUOp::solve_splitting(Size direction,
const Array& r, Real a) const {
if (direction == 0 || direction == 1) {
return klugeOp_->solve_splitting(direction, r, a);
}
else if (direction == 2) {
return ouOp_->solve_splitting(direction, r, a);
}
else {
Array retVal(r);
return retVal;
}
}
Array FdmKlugeExtOUOp::preconditioner(const Array& r, Real dt) const {
return klugeOp_->solve_splitting(0, r, dt);
}
std::vector<SparseMatrix> FdmKlugeExtOUOp::toMatrixDecomp() const {
const std::vector<SparseMatrix> klugeDecomp = klugeOp_->toMatrixDecomp();
return {
klugeDecomp[0],
klugeDecomp[1],
ouOp_->toMatrixDecomp().front(),
corrMap_.toMatrix() + klugeDecomp[2]
};
}
}
|