Problem with my mathcad programm (iteration)
Problem with my mathcad programm (iteration)
(OP)
Hello,
I have a problem with a programm that I have made in Mathcad. I don't know enough of Mathcad to solve it.
I have defined the equations in mathcad.
One of these equations has the form: 4/3*Pi(rt^3-r^3 (simplified). I want to know the radius at time t
I have written the following programm:
help(rt,t,r)=o(rt,t,r)-P(rt)
H(rt,t,r,)=O(rt,t,r)-P(rt)-(L*(rt-r0/r0))
V1(rt,t,r)=root(h(rt,t,r),rt)
V2: t--> 1
rt --> r0
W --> W0
rt --> r0
while help(rt,r,t)>0.000000001
t1 --> t+1
r --> r0
W --> W0+4/3*(rt^3-r^3)
V2t-->V1(1.87*10^-5,t1,rt)
V2
at time t+1 then the function rt should be r(t+1) and r --> rt. How can I define that?
Thanks.
I have a problem with a programm that I have made in Mathcad. I don't know enough of Mathcad to solve it.
I have defined the equations in mathcad.
One of these equations has the form: 4/3*Pi(rt^3-r^3 (simplified). I want to know the radius at time t
I have written the following programm:
help(rt,t,r)=o(rt,t,r)-P(rt)
H(rt,t,r,)=O(rt,t,r)-P(rt)-(L*(rt-r0/r0))
V1(rt,t,r)=root(h(rt,t,r),rt)
V2: t--> 1
rt --> r0
W --> W0
rt --> r0
while help(rt,r,t)>0.000000001
t1 --> t+1
r --> r0
W --> W0+4/3*(rt^3-r^3)
V2t-->V1(1.87*10^-5,t1,rt)
V2
at time t+1 then the function rt should be r(t+1) and r --> rt. How can I define that?
Thanks.
RE: Problem with my mathcad programm (iteration)
TTFN
FAQ731-376: Eng-Tips.com Forum Policies
Chinese prisoner wins Nobel Peace Prize
RE: Problem with my mathcad programm (iteration)
I would like to know how I can define in the simplified function!
4/3 * (rt^3-r^3)
After the condition is true, that the new value of rt will be the value of r(t+1) ( which can be found with the root function )and the new value of r will be the value of the last rt. How can I define that?
Thx.