/*
* ConstExponential.java
*
* Copyright (C) 2002-2006 Alexei Drummond and Andrew Rambaut
*
* This file is part of BEAST.
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership and licensing.
*
* BEAST 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
* of the License, or (at your option) any later version.
*
* BEAST 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 BEAST; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
package dr.evolution.coalescent;
/**
* This class models exponential growth from an initial population size.
*
* @author Alexei Drummond
* @author Andrew Rambaut
*
* @version $Id: ConstExponential.java,v 1.8 2005/10/28 02:50:05 alexei Exp $
*
*/
public class ConstExponential extends ExponentialGrowth {
/**
* Construct demographic model with default settings
*/
public ConstExponential(Type units) {
super(units);
}
public double getN1() { return N1; }
public void setN1(double N1) { this.N1 = N1; }
public void setProportion(double p) { this.N1 = getN0() * p; }
// Implementation of abstract methods
public double getDemographic(double t) {
double N0 = getN0();
double N1 = getN1();
double r = getGrowthRate();
//return nOne + ((nZero - nOne) * Math.exp(-r*t));
double time = Math.log(N0/N1)/r;
if (t < time) return N0 * Math.exp(-r*t);
return N1;
}
/**
* Returns value of demographic intensity function at time t
* (= integral 1/N(x) dx from 0 to t).
*/
public double getIntensity(double t) {
double r = getGrowthRate();
double time = Math.log(getN0()/getN1())/r;
if (r == 0.0) return t/getN0();
if (t < time) {
return super.getIntensity(t);
} else {
return super.getIntensity(time) + (t-time)/getN1();
}
}
public double getInverseIntensity(double x) {
/* AER - I think this is right but until someone checks it...
double nZero = getN0();
double nOne = getN1();
double r = getGrowthRate();
if (r == 0) {
return nZero*x;
} else if (alpha == 0) {
return Math.log(1.0+nZero*x*r)/r;
} else {
return Math.log(-(nOne/nZero) + Math.exp(nOne*x*r))/r;
}
*/
throw new RuntimeException("Not implemented!");
}
public int getNumArguments() {
return 3;
}
public String getArgumentName(int n) {
switch (n) {
case 0: return "N0";
case 1: return "r";
case 2: return "N1";
}
throw new IllegalArgumentException("Argument " + n + " does not exist");
}
public double getArgument(int n) {
switch (n) {
case 0: return getN0();
case 1: return getGrowthRate();
case 2: return getN1();
}
throw new IllegalArgumentException("Argument " + n + " does not exist");
}
public void setArgument(int n, double value) {
switch (n) {
case 0: setN0(value); break;
case 1: setGrowthRate(value); break;
case 2: setN1(value); break;
default: throw new IllegalArgumentException("Argument " + n + " does not exist");
}
}
public double getLowerBound(int n) {
return 0.0;
}
public double getUpperBound(int n) {
return Double.POSITIVE_INFINITY;
}
//
// private stuff
//
private double N1 = 0.0;
}