forked from BhallaLab/moose-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGssaVoxelPools.cpp
376 lines (334 loc) · 11.9 KB
/
GssaVoxelPools.cpp
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/**********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment.
** Copyright (C) 2003-2010 Upinder S. Bhalla. and NCBS
** It is made available under the terms of the
** GNU Lesser General Public License version 2.1
** See the file COPYING.LIB for the full notice.
**********************************************************************/
#include "../basecode/header.h"
#include "../randnum/randnum.h"
#include "RateTerm.h"
#include "FuncTerm.h"
#include "../basecode/SparseMatrix.h"
#include "KinSparseMatrix.h"
#include "VoxelPoolsBase.h"
#include "../mesh/VoxelJunction.h"
#include "XferInfo.h"
#include "KsolveBase.h"
#include "Stoich.h"
#include "GssaSystem.h"
#include "GssaVoxelPools.h"
/**
* The SAFETY_FACTOR Protects against the total propensity exceeding
* the cumulative
* sum of propensities, atot. We do a lot of adding and subtracting of
* dependency terms from atot. Roundoff error will eventually cause
* this to drift from the true sum. To guarantee that we never lose
* the propensity of the last reaction, this safety factor scales the
* first calculation of atot to be slightly larger. Periodically this
* will cause the reaction picking step to exceed the last reaction
* index. This is safe, we just pick another random number.
* This will happen rather infrequently.
* That is also a good time to update the cumulative sum.
* A double should have >15 digits, so cumulative error will be much
* smaller than this.
*/
const double SAFETY_FACTOR = 1.0 + 1.0e-9;
// Class definitions
GssaVoxelPools::GssaVoxelPools(): VoxelPoolsBase(), t_( 0.0 ), atot_( 0.0 )
{;}
GssaVoxelPools::~GssaVoxelPools()
{
for ( size_t i = 0; i < rates_.size(); ++i )
delete( rates_[i] );
}
//////////////////////////////////////////////////////////////
// Solver ops
//////////////////////////////////////////////////////////////
void GssaVoxelPools::updateDependentMathExpn(
const GssaSystem* g, unsigned int rindex, double time )
{
// The issue is that if the expression depends on t, we really need
// to update it every timestep. But then a cascading set of reacs
// should also be updated.
// The lower commented block has all funcs updated every time step,
// but this too
// doesn't update the cascading reacs. So this is now handled by the
// useClockedUpdate flag, and we use the lower block here instead.
/*
const vector< unsigned int >& deps = g->dependentMathExpn[ rindex ];
for( vector< unsigned int >::const_iterator
i = deps.begin(); i != deps.end(); ++i ) {
g->stoich->funcs( *i )->evalPool( varS(), time );
}
*/
/*
unsigned int numFuncs = g->stoich->getNumFuncs();
for( unsigned int i = 0; i < numFuncs; ++i )
{
g->stoich->funcs( i )->evalPool( varS(), time );
}
*/
// This function is equivalent to the loop above.
g->stoich->updateFuncs( varS(), time );
}
void GssaVoxelPools::updateDependentRates(
const vector< unsigned int >& deps, const Stoich* stoich )
{
for ( auto i = deps.cbegin(); i != deps.end(); ++i )
{
atot_ -= fabs( v_[ *i ] );
atot_ += fabs( v_[ *i ] = getReacVelocity( *i, S() ) );
}
}
unsigned int GssaVoxelPools::pickReac()
{
double r = rng_.uniform( ) * atot_;
double sum = 0.0;
// This is an inefficient way to do it. Can easily get to
// log time or thereabouts by doing one or two levels of
// subsidiary tables. Too many levels causes slow-down because
// of overhead in managing the tree.
// Slepoy, Thompson and Plimpton 2008
// report a linear time version.
for ( auto i = v_.cbegin(); i != v_.end(); ++i )
{
if ( r < ( sum += fabs( *i ) ) )
{
// double vel = fabs( getReacVelocity( i - v_.begin(), S() ) );
// assert( vel >= 0 );
return static_cast< unsigned int >( i - v_.begin() );
}
}
return v_.size();
}
void GssaVoxelPools::setNumReac( unsigned int n )
{
v_.clear();
v_.resize( n, 0.0 );
numFire_.resize( n, 0 );
}
/**
* Cleans out all reac rates and recalculates atot. Needed whenever a
* mol conc changes, or if there is a roundoff error.
* Returns true if OK, returns false if it is in a stuck state and atot<=0
*/
bool GssaVoxelPools::refreshAtot( const GssaSystem* g )
{
g->stoich->updateFuncs( varS(), t_ );
updateReacVelocities( g, S(), v_ );
atot_ = 0;
for ( auto i = v_.cbegin(); i != v_.cend(); ++i )
atot_ += fabs(*i);
atot_ *= SAFETY_FACTOR;
// Check if the system is in a stuck state. If so, terminate.
if ( atot_ <= 0.0 )
return false;
return true;
}
/**
* Recalculates the time for the next event. Used when we have a clocked
* update of rates due to timed functions. In such cases the propensities
* may change invisibly, so we need to update time estimates
*/
void GssaVoxelPools::recalcTime( const GssaSystem* g, double currTime )
{
refreshAtot( g );
assert( t_ > currTime );
t_ = currTime;
double r = rng_.uniform( );
while( r == 0.0 )
r = rng_.uniform( );
t_ -= ( 1.0 / atot_ ) * log( r );
}
void GssaVoxelPools::advance( const ProcInfo* p, const GssaSystem* g )
{
double nextt = p->currTime;
while ( t_ < nextt )
{
if ( atot_ <= 0.0 ) // reac system is stuck, will not advance.
{
t_ = nextt;
g->stoich->updateFuncs( varS(), t_ );
return;
}
unsigned int rindex = pickReac();
assert( g->stoich->getNumRates() == v_.size() );
if ( rindex >= g->stoich->getNumRates() )
{
// probably cumulative roundoff error here.
// Recalculate atot to avoid, and redo.
if ( !refreshAtot( g ) ) // Stuck state.
{
t_ = nextt;
g->stoich->updateFuncs( varS(), t_ );
return;
}
// We had a roundoff error, fixed it, but now need to be sure
// we only fire a reaction where this is permissible.
for ( unsigned int i = v_.size(); i > 0; --i )
{
if ( fabs( v_[i-1] ) > 0.0 )
{
rindex = i - 1;
break;
}
}
assert( rindex < v_.size() );
}
double sign = std::copysign( 1, v_[rindex] );
g->transposeN.fireReac( rindex, Svec(), sign );
numFire_[rindex]++;
double r = rng_.uniform();
while ( r <= 0.0 )
r = rng_.uniform();
t_ -= ( 1.0 / atot_ ) * log( r );
g->stoich->updateFuncs( varS(), t_ );
updateDependentRates( g->dependency[ rindex ], g->stoich );
}
}
void GssaVoxelPools::reinit( const GssaSystem* g, int rngSeedOffset )
{
rng_.setSeed( moose::getGlobalSeed() + rngSeedOffset );
VoxelPoolsBase::reinit(); // Assigns S = NA * vol * Cinit;
unsigned int numVarPools = g->stoich->getNumVarPools();
g->stoich->updateFuncs( varS(), 0 );
double* n = varS();
double error = 0.0;
double _prev = 0.0;
if( g->useRandInit )
{
map<double, vector<Eref>> groupByVal;
for ( unsigned int i = 0; i < numVarPools; ++i )
{
_prev = n[i];
n[i] = approximateWithInteger(_prev, rng_);
error += fabs(_prev - n[i]);
}
// Show warning to user if extra molecules in the system after
// converting floats to integer is larger than 1.0.
// Jan 2024: Disable until I come up with a good way to handle.
// Note also that this is likely when we have more pools.
if( 0 && std::abs(error) >= 1.0 )
{
MOOSE_WARN( "Extra " << error
<< " molecules in system after converting fractional to integer."
);
}
}
else // Just round to the nearest int.
{
for ( unsigned int i = 0; i < numVarPools; ++i )
n[i] = std::round(n[i]);
}
t_ = 0.0;
refreshAtot( g );
numFire_.assign( v_.size(), 0 );
}
vector< unsigned int > GssaVoxelPools::numFire() const
{
return numFire_;
}
/////////////////////////////////////////////////////////////////////////
// Rate computation functions
/////////////////////////////////////////////////////////////////////////
void GssaVoxelPools::updateAllRateTerms( const vector< RateTerm* >& rates,
unsigned int numCoreRates )
{
for ( unsigned int i = 0; i < rates_.size(); ++i )
delete( rates_[i] );
rates_.resize( rates.size() );
for ( unsigned int i = 0; i < numCoreRates; ++i )
rates_[i] = rates[i]->copyWithVolScaling( getVolume(), 1, 1 );
for ( unsigned int i = numCoreRates; i < rates.size(); ++i )
rates_[i] = rates[i]->copyWithVolScaling( getVolume(),
getXreacScaleSubstrates(i - numCoreRates),
getXreacScaleProducts(i - numCoreRates ) );
}
void GssaVoxelPools::updateRateTerms( const vector< RateTerm* >& rates,
unsigned int numCoreRates, unsigned int index )
{
// During setup or expansion of the reac system, this might be called
// before the local rates_ term is assigned. If so, ignore.
if ( index >= rates_.size() )
return;
delete( rates_[index] );
if ( index >= numCoreRates )
rates_[index] = rates[index]->copyWithVolScaling(
getVolume(),
getXreacScaleSubstrates(index - numCoreRates),
getXreacScaleProducts(index - numCoreRates)
);
else
rates_[index] = rates[index]->copyWithVolScaling(getVolume(), 1.0, 1.0);
}
/**
* updateReacVelocities computes the velocity *v* of each reaction.
* This is a utility function for programs like SteadyState that need
* to analyze velocity.
*/
void GssaVoxelPools::updateReacVelocities( const GssaSystem* g,
const double* s, vector< double >& v ) const
{
const KinSparseMatrix& N = g->stoich->getStoichiometryMatrix();
assert( N.nColumns() == rates_.size() );
vector< RateTerm* >::const_iterator i;
v.clear();
v.resize( rates_.size(), 0.0 );
vector< double >::iterator j = v.begin();
for ( i = rates_.begin(); i != rates_.end(); i++)
{
*j++ = (**i)( s );
assert( !std::isnan( *( j-1 ) ) );
}
}
double GssaVoxelPools::getReacVelocity(
unsigned int r, const double* s ) const
{
double v = rates_[r]->operator()( s );
return v;
}
void GssaVoxelPools::setStoich( const Stoich* stoichPtr )
{
stoichPtr_ = stoichPtr;
}
// Handle volume updates. Inherited virtual func.
void GssaVoxelPools::setVolumeAndDependencies( double vol )
{
VoxelPoolsBase::setVolumeAndDependencies( vol );
updateAllRateTerms(stoichPtr_->getRateTerms(), stoichPtr_->getNumCoreRates());
}
// Handle cross compartment reactions
void GssaVoxelPools::xferIn( XferInfo& xf, unsigned int voxelIndex, const GssaSystem* g )
{
unsigned int offset = voxelIndex * xf.xferPoolIdx.size();
auto i = xf.values.cbegin() + offset;
auto j = xf.lastValues.cbegin() + offset;
auto m = xf.subzero.begin() + offset;
double* s = varS();
for ( auto k = xf.xferPoolIdx.cbegin(); k != xf.xferPoolIdx.end(); ++k )
{
double& x = s[*k];
double dx = *i++ - *j++;
// x += approximateWithInteger_debug(__FUNCTION__, dx, rng_);
x += approximateWithInteger(dx, rng_);
if ( x < *m )
{
*m -= x;
x = 0;
}
else
{
x -= *m;
*m = 0;
}
m++;
}
// If S has changed, then I should update rates of all affected reacs.
// Go through stoich matrix to find affected reacs for each mol
// Store in list, since some may be hit more than once in this func.
// When done, go through and update all affected ones.
// Does this fix the problem of negative concs?
refreshAtot( g );
}