Changes between Initial Version and Version 2 of Ticket #11653
- Timestamp:
- 08/05/11 21:21:27 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11653
-
Property
Summary
changed from
desolve failed to solve an ODE with a
todesolve failed to solve an ODE whose rhs contains a function
-
Property
Summary
changed from
-
Ticket #11653 – Description
initial v2 9 9 def pulse(tonset, tdur, amp): 10 10 11 """ returns a square pulse as a function of x, f(x) the pulse is defined as follows: tonset -- start of pulse tdur -- duration of pulse amp -- amplitude of pulse """ 11 """ returns a square pulse as a function of x, f(x) the pulse is defined as follows: t 12 onset -- start of pulse 13 tdur -- duration of pulse 14 amp -- amplitude of pulse """ 12 15 13 16 f(x)= amp*(sign(x-tonset)/2-sign(x-tonset-tdur)/2) … … 31 34 ''TypeError: unable to make sense of Maxima expression 'v(x)=-(2*(at(integrate(signum(x-5)-signum(x-13),x),[x=0,v(x)=0]))-2*int\ egrate(signum(x-5)-signum(x-13),x)-x^2)/2' in Sage^'' 32 35 33 desolve_laplace leads to similar error: 36 desolve_laplace leads to similar error: 34 37 35 38 sage: desolve(de=dvdx, ivar=x, dvar=v, ics=[0,0])