- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试求解一组 ODE 以模拟淀粉 enzyme ( enzyme )对淀粉的水解。当我尝试求解方程组时,我得到了
lsoda-- at current t (=r1), mxstep (=i1) steps
taken on this call before reaching tout
In above message, I1 = 500
In above message, R1 = 0.6333483931400E+00
Excess work done on this call (perhaps wrong Dfun type).
Run with full_output = 1 to get quantitative information.
错误。代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import numpy as np
import math
from scipy.integrate import odeint
def TemperatureProfile (timeandtemp,t) :
if t==0.0 :
T = 273.15+55
elif t>0.0 and t<9.0 :
T = 273.15+55+t
elif t>= 9.0 and t<=9.0+timeandtemp[0][0] :
T = 273.15+ timeandtemp[0][1]
elif t>9.0+timeandtemp[0][0] and t<9.0+timeandtemp[0][0]+8.0 :
T = 273.15+ timeandtemp[0][1]+t
elif t>=9.0+timeandtemp[0][0]+8.0 and t<=9.0+timeandtemp[0][0]+8.0+timeandtemp[1][0] :
T = 273.15+timeandtemp[1][1]
elif t>9.0+timeandtemp[0][0]+8.0+timeandtemp[1][0] and t<9.0+timeandtemp[0][0]+8.0+timeandtemp[1][0]+6:
T = 273.15+ timeandtemp[1][1]+t
elif t>=9.0+timeandtemp[0][0]+8.0+timeandtemp[1][0]+6 and t<9.0+timeandtemp[0][0]+8.0+timeandtemp[1][0]+6 :
T = 273.15+timeandtemp[2][1]
return T
def Flux (ci,temperature) :
'''
Constants
'''
K_gel1 = 5.7*10**31
K_gel2 = 3.1*10**14
k_glc = 0.023
k_glc2 = 2.9*10**-8
k_alphamal = 0.389
k_betamal = 0.137
k_alphamal2 = 1.2*10**-7
k_betamal2 = 8.4*10**-8
k_mlt = 0.117
k_mlt2 = 1.5*10**-8
k_dex = 0.317
k_degalpha = 6.9*10**30
E_degalpha = 224.2
k_degbeta = 7.6*10**60
E_degbeta = 410.7
starchUG = ci[0]
starchG = ci[1]
glc = ci[2]
mal = ci[3]
mlt = ci[4]
dex = ci[5]
enzA = ci[6]
enzB = ci[7]
'''
Relative activities
'''
if temperature < 336.15 :
a_alpha = -0.0011*temperature**3 + 1.091*temperature**2 - 352.89*temperature + 38008.3
a_beta = 0.049*temperature - 13.9
else :
a_alpha = 0.0055*temperature**3 - 5.663*temperature**2+ 1941.9*temperature- 221864
a_beta = 0.374*temperature + 128.3
'''
Equations
'''
if temperature < 333.15 :
r_gel = K_gel1*starchUG
else :
r_gel = K_gel2*starchUG
r_glc = k_glc*a_alpha*glc
r_mal = (k_alphamal*a_alpha+k_betamal*a_beta)*starchG
r_mlt = k_mlt*a_alpha*starchG
r_dex = k_dex*a_alpha*starchG
r_glc2 = k_glc2*a_alpha*dex
r_mal2 = k_alphamal2*a_alpha*dex+k_betamal2*a_beta*dex
r_mlt2 = k_mlt2*a_alpha*dex
r_degA = k_degalpha*math.exp(-E_degalpha/(8.3145*temperature))*enzA
r_degB = k_degbeta*math.exp(-E_degbeta/(8.3145*temperature))*enzB
r_acA = k_degalpha*math.exp(-E_degalpha/(8.3145*temperature))*a_alpha*enzA
r_acB = k_degbeta*math.exp(-E_degbeta/(8.3145*temperature))*a_beta*enzB
return np.array([r_glc,r_mal,r_mlt, r_dex, r_glc2, r_mal2, r_mlt2, r_degA, r_degB, r_acA, r_acB])
def Secmembre (ci,t,tempProf) :
temperature = TemperatureProfile(tempProf,t)
mS = np.mat([
[-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0],
[0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 0, 1, -1, -1, -1, 0, 0, 0]])
mS = np.transpose(mS)
mS = np.array(mS)
metabos = Flux(ci,temperature)
varMetabos = np.dot(metabos,mS)
return varMetabos
# Initial conditions
initCond = []
temperatureProfile = ((30,64),(30,72),(5,78)) # Temperature steps in minutes
t0 = 0
tf = temperatureProfile[0][0]+temperatureProfile[1][0]+temperatureProfile[2][0]+9+8+6
nbPoints = 100
timeProfile = np.linspace(t0,tf,nbPoints)
print timeProfile
initCond.append(113.5)
initCond.append(0)
initCond.append(4)
initCond.append(5)
initCond.append(0)
initCond.append(0)
initCond.append(80000)
initCond.append(80000)
initCond=np.array(initCond)
result = odeint(Secmembre,initCond,timeProfile,args=(temperatureProfile,))
在使用 Matlab 时,我曾使用 ode23tb 求解。我认为 odeint 不是正确的求解器,但我不知道该使用哪一个。也许有人熟悉这种方程式?
最佳答案
总的来说,python,特别是 scipy,没有像 MATLAB 那样针对求解 ODE 进行优化。
关于您的错误:
lsoda-- at current t (=r1), mxstep (=i1) steps
taken on this call before reaching tout
In above message, I1 = 500
In above message, R1 = 0.6333483931400E+00
Excess work done on this call (perhaps wrong Dfun type).
Run with full_output = 1 to get quantitative information.
求解器的工作方式是它具有内部定义的步骤。因此,举例来说,您在 0(=initial)、1、2、3 处调用求解器...求解器将在这些点返回值,但在内部,它可能首先在 0 处求解 ODE,然后是 0.00000001 , 0.00000002, 0.00000003, 0.0001, 0.01, 0.1, 0.5, 1, 等等(所有数字都是为了举例而编造的。)但是,求解器将采取的步骤数是有限制的(可以理解,到避免可能的无限循环或非常非常长的运行时间)。
您的错误是说您的求解器已达到最大步数 [mxstep (=i1(=500)),但仍未在其内部定义的可接受误差范围内获得结果,因此它停止并抛出错误。
建议:调整求解器使其获得更多步数(在 odeint 中设置 nstep),除此之外,调整内部公差,也许你不需要求解器想要给你的那么精确,最后考虑使用ode 而不是 odeint(更多选项)。
进一步阅读:
关于python - 用 SciPy 求解一组 ODE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24792098/
我正在使用混合效应模型,并且由于我的方法的特殊性我需要解决下面模型的积分,然后制作图表获得的估计值。 换句话说,我需要求解下面的积分: 其中,di^2 是我模型中的 Var3,dh 是混合效应模型对应
我有一个方程组,我想用数值方法求解它。给定起始种子,我想得到一个接近的解决方案。让我解释。 我有一个常量向量,X,值: X <- (c(1,-2,3,4)) 和一个向量 W 的权重: W <- (c(
假设我有以下方程组: a * b = 5 sqrt(a * b^2) = 10 如何求解 R 中 a 和 b 的这些方程? 我想这个问题可以说是一个优化问题,具有以下功能......? fn <- f
我在 R 中有一个简单的通量模型。它归结为两个微分方程,对模型中的两个状态变量进行建模,我们将它们称为 A和 B .它们被计算为四个分量通量的简单差分方程 flux1-flux4 , 5 个参数 p1
R有什么办法吗?求解给定单变量函数的反函数?动机是我以后告诉R使用值向量作为反函数的输入,以便它可以吐出反函数值。 例如,我有函数 y(x) = x^2 ,逆是 y = sqrt(x) .有没有办法R
我在字符串中有以下方程 y = 18774x + 82795 求解x我会这样做:- x = (y-82795) / 18774 我知道y的值 但是方程一直在变化,并且始终采用字符串格式 是否可以简单地
如果我用 diophantine(2*x+3*y-5*z-77) 我收到了这个结果。 {(t_0, -9*t_0 - 5*t_1 + 154, -5*t_0 - 3*t_1 + 77)} 到目前为止还
我正在尝试求解仅限于正解的 ODE,即: dx/dt=f(x) x>=0。 在 MATLAB 中这很容易实现。 R 是否有任何变通方法或包来将解决方案空间限制为仅正值? 这对我来说非常重要,不幸的是没
下面的 ANTLR 文法中的 'expr' 规则显然是相互左递归的。作为一个 ANTLR 新手,我很难解决这个问题。我已经阅读了 ANTLR 引用书中的“解决非 LL(*) 冲突”,但我仍然没有看到解
我有一个关于在 R 中求解函数的可能性的非常基本的问题,但知道答案确实有助于更好地理解 R。 我有以下等式: 0=-100/(1+r)+(100-50)/(1+r)^2+(100-50)/(1+r)^
我正在编写使用递归回溯来解决 8 个皇后问题的代码(将 n 个国际象棋皇后放在 n × n 的棋盘上,这样皇后就不会互相攻击)。 我的任务是创建两个方法:编写一个公共(public)solveQuee
我不知道在以下情况下如何进行,因为最后一个方程没有所有 4 个变量。所以使用了等式下面的代码,但这是错误的......有谁知道如何进行? 方程: 3a + 4b - 5c + d = 10 2a +
假设我们有这个递归关系,它出现在 AVL 树的分析中: F1 = 1 F2 = 2 Fn = Fn - 1 + Fn - 2 + 1(其中 n ≥ 3) 你将如何解决这个递归以获得 F(n) 的封闭形
在Maple中,有谁知道是否存在一个函数来求解变量?例如,我正在尝试求解 r 的 solve4r=(M-x^y)*(r^(-1)) mod (p-1)。所以我知道 M、x、y 和 p 的值,但不知道
我也问过这个here在声音设计论坛上,但问题是沉重的计算机科学/数学,所以它实际上可能属于这个论坛: 因此,通过读取文件中的二进制文件,我能够成功地找到关于 WAV 文件的所有信息,除了 big si
我有以下问题: 设 a 和 b 为 boolean 变量。是否可以设置 a 和 b 的值以使以下表达式的计算结果为 false? b or (((not a) or (not a)) or (a or
我需要用 C 求解这个超越方程: x = 2.0 - 0.5sen(x) 我试过这个: double x, newx, delta; x = 2.0 - 0.5; newx = sin(x); del
我在 Windows 上使用 OpenCV 3.1。 一段代码: RNG rng; // random number generator cv::Mat rVec = (cv::Mat_(3, 1)
我正在尝试求解一个包含 3 个变量和数量可变的方程的方程组。 基本上,系统的长度在 5 到 12 个方程之间,无论有多少个方程,我都试图求解 3 个变量。 看起来像这样: (x-A)**2 + (y-
我正在尝试为有限差分法设计一种算法,但我有点困惑。所讨论的 ODE 是 y''-5y'+10y = 10x,其中 y(0)=0 且 y(1)=100。所以我需要一种方法来以某种方式获得将从关系中乘以“
我是一名优秀的程序员,十分优秀!