From 8751de51610d79f4fda01f2afca3eeb2de241c70 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Sun, 4 May 2014 20:35:07 +0100 Subject: [PATCH] Multicomponent model, default alpha to 0 .. looking at the briefing from Mike on Youtube it looks like an alpha value of 0 is a compromise between -0.1 and 0.1. .. see the video here: http://www.youtube.com/watch?v=v57NRQ-pHps --- src/CPPlot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CPPlot.cpp b/src/CPPlot.cpp index f9b1fec4a..953986dcb 100644 --- a/src/CPPlot.cpp +++ b/src/CPPlot.cpp @@ -517,7 +517,7 @@ CPPlot::plotModel() // tau1 - W'1 / p1 // tau2 - 15,000 // w2 - A slow twitch W' derived from p2 * tau2 - // alpha- 0.1 + // alpha- 0.1 thru -0.1, we default to zero // beta - 1.0 // // Fast twitch component is: @@ -544,7 +544,7 @@ CPPlot::plotModel() double p2 = cp; double tau1 = w1 / p1; const double tau2 = 15000; - const double alpha = 0.1; + const double alpha = 0.0f; const double beta = 1.0; //double w2 = p2 * tau2;