![]() |
|
Porsche, and the Porsche crest are registered trademarks of Dr. Ing. h.c. F. Porsche AG.
This site is not affiliated with Porsche in any way. Its only purpose is to provide an online forum for car enthusiasts. All other trademarks are property of their respective owners. |
|
![]() |
Jeff Krieger |
![]()
Post
#1
|
Unregistered ![]() |
Does anyone know how to modify this small program that I wrote in C++ so that for every cout statement there is a statement that writes the exact same information to the file accelfig.txt? I use this program to generate acceleration values and write them to accelfig.txt and then I read these acceleration values into another program that I wrote that numerically integrates these figures to calculate 0 to 60 mph and 1/4 mile times, speed at the end of the 1/4 mile, maximum hp, 60 mph to 0 braking distance etc. I use the free C++ compiler from http://www.bloodshed.net/dev/devcpp.html .
//CalcAccl1 #include < iostream.h > #include < stdio.h > // This program calculates 30 seconds worth of acceleration values, assumed // to be in ft/s^2, and writes them to the file accelfig.txt. main() { FILE *fp; int counter; double acceleration = 0, time = 0; fp = fopen("accelfig.txt", "w"); for (counter = 0; counter <= 1600; counter++) { acceleration = time + 10; fprintf(fp, "%20.10f\n", acceleration); cout << "\nThe acceleration at " << time << " seconds is " << acceleration << '\n'; time = time + 0.0025; } for (counter = 1601; counter <= 4800; counter++) { acceleration = 14; fprintf(fp, "%20.10f\n", acceleration); cout << "\nThe acceleration at " << time << " seconds is " << acceleration << '\n'; time = time + 0.0025; } for (counter = 4801; counter <= 12000; counter++) { acceleration = 62 - 4*time; fprintf(fp, "%20.10f\n", acceleration); cout << "\nThe acceleration at " << time << " seconds is " << acceleration << '\n'; time = time + 0.0025; } fclose(fp); } |
![]() ![]() |
krk |
![]()
Post
#2
|
Senior Member ![]() ![]() ![]() Group: Members Posts: 997 Joined: 27-December 02 From: San Jose Member No.: 22 ![]() |
QUOTE(krk @ May 13 2003, 05:42 PM) QUOTE(krk @ May 13 2003, 05:23 PM) I #include <iostream.h> #include <fstream.h> #include <stdlib.h> So this is wierd. (I wonder if it's the browser I'm using) The include names don't appear for me (i.e. where "#include <crap>" is writtten, I see "#include") I've left them in the quoted section to see what I see. kim. test. |
![]() ![]() |
![]() |
Lo-Fi Version | Time is now: 8th July 2025 - 10:06 AM |
All rights reserved 914World.com © since 2002 |
914World.com is the fastest growing online 914 community! We have it all, classifieds, events, forums, vendors, parts, autocross, racing, technical articles, events calendar, newsletter, restoration, gallery, archives, history and more for your Porsche 914 ... |