Sunday 12 December 2010

algorithm for ut+1/2at2

The total distance travelled by vehicle in 't' seconds is given by
distance = ut+1/2at2 where 'u' and 'a' are the initial velocity (m/sec.) and acceleration (m/sec2). Write C program to find the distance travelled at regular intervals of time given the values of 'u' and 'a'. The program should provide the flexibility to the user to select his own time intervals and repeat the calculations for different values of 'u' and 'a'.

Description:


The total distance travelled by vehicle in 't' seconds is given by
distance = ut+1/2at2 where 'u' and 'a' are the initial velocity (m/sec.)
and acceleration (m/sec2).


Algorithm:

Step 1: Start
Step2 : Read t ,dt
Step 3: Set i to 1
Step 4: Set k to dt
Step 5: Read u,a
Step 6: set s to u*k+0.5*d*k*k
Step 7: Write s
Step 8: If(k<=t) and i=1 then
Begin
Step 8.1 go to step 6
And
Else
Begin
Step 8.2 :read
Step 8.3 :if(j=0) then
Begin
Step 8.3.1:Set I to 0
End
Else
Begin
Step 8.3.2: Set I to 1
Step 8.3.3: go to step 4
  End

Step 9:   Stop

Step 10: End


No comments:

Post a Comment