Please I Need Help On This Question - Programming - Nairaland
Nairaland Forum › Science/Technology › Programming › Please I Need Help On This Question (1232 Views)
| Please I Need Help On This Question by possibiliterian(op): 5:18pm On Jan 03, 2017 |
the voltage across a discharging capacitor is v(t) = 10(1− e^-0.2t) generate a table of voltage, v(t) , versus time, t, for t = 0 to 50 seconds with increment of 5 s |
| Re: Please I Need Help On This Question by Drniyi4u(m): 6:12pm On Jan 03, 2017 |
Hi. From the question, you were given the time from 0 to 50 seconds and increment of 5. So, the time will be 0, 5, 10, 15, 20......50secs, and for each instance of time, v(t) will be generated by inserting the value of t in the given equation. Then, you'll tabulate your result as required. I hope this is helpful. Cheers! |
| Re: Please I Need Help On This Question by kudaisi(m): 9:52am On Jan 04, 2017 |
possibiliterian: Do you need a computer program to output the result ? |
| Re: Please I Need Help On This Question by kudaisi(m): 10:17am On Jan 04, 2017 |
possibiliterian:Just in case you needed the a program to solve it, here is a code I just whipped up in Java: public class CapacitorDischarge {An this is what the output looks like: Time(t) | Voltage(v) Disclaimer I can't assure you that the result is correct cause the value of e (Euler's number) used was to ten places. The plan is to give you an idea on how to go about it. |
| Re: Please I Need Help On This Question by possibiliterian(op): 8:45am On Jan 05, 2017 |
Thanks Guys.....Have gotten it |
IT Gurus Here Pls Help Me Answer This Question • Can A Pro Programmer/developer Answer This Question? • I Need Help On Java • 2 • 3 • 4
How Can I Center The Main-container In This HTML Layout ? • Very Urgent • Hello Dear! Pls Tell Me Something About Laravel
Do you need a computer program to output the result ?