使用ofstream dataout的问题

时间:2011-05-11 09:39:54

标签: c++ ofstream

在我的程序中,我的dataout:void outfile没有写入文件,有人能找出原因吗?

using namespace std;
#include<iostream>
#include<cmath>
#include<iomanip>
#include<fstream>

// Declaration of functions used
void writetable (double, double, double, double);
void tableout (double, double, double, double);
void secant(double, double, double, double, double, double, double, double, double, double&, int&);
void writedata (double, double, double);
void outfile(double, double, double&);
double fx( double, double, double, double, double, double, double);

const double tol=0.0001;    // Tolerance for convergence
const int max_iter=50;      // Maximum iterations allowed
// main program
int main()
{
    int iteration;          // Number of iterations

    double  kr, uc, q, b, radians;

    double x0, x1;          // Starting values for x
    double root;           // Root found by secant method
    const double PI = 4.0*atan(1.0);
    ifstream datain ("shuttle.txt");
    ofstream dataout ("results.txt");
    datain >> kr >> uc >> q >> b;
    x0= 1000;
    x1 = 200;
    writetable(kr, uc, q, b);
    tableout(kr, uc, q, b);
    for (double angle = 10; angle <= 70; angle += 15)
    {
        for (double velocity = 16000; velocity <= 17500; velocity += 500)
        {
            radians= angle * PI/180  ;
            //cout << velocity << endl;
            //  cout << radians << endl;
            //  cout << angle << endl;
            secant (radians, velocity, kr, uc, q, b, x0, x1, angle, root, iteration);
            writedata(angle, velocity, root);
        }
    }
    system("pause");
}

// Definition of function "secant"
// Receives a, b, c, d and x0 values from main program
// Returns root and the iterations required
void secant(double radians, double velocity, double kr, double uc, double q, double b, double x0, double x1, double angle, double& root, int& iteration)
{
    double xnminus1, xnplus1, xn; // Local variables
    iteration=0;                  // Initialize iterations
    xnminus1=x0;
    xn=x1;
    do
    {
        ++iteration;
        xnplus1 = xn - fx(radians, velocity, kr, uc, q, b, xn)*(xn-xnminus1)/
                                  (fx(radians, velocity, kr, uc, q, b, xn)-fx(radians, velocity, kr, uc, q, b, xnminus1));
        //cout<<"x"<<iteration+1<<" = "<<xnplus1<<endl;
        xnminus1 = xn;
        xn=xnplus1;
    }  
    while ((fabs(fx(radians, velocity, kr, uc, q, b, xnplus1)) >= tol )&& (iteration < max_iter));
    root=xnplus1;  

    //cout<<"\nThe root is = "<<root<<endl;
    //cout<<"The number of iterations was = "<<iteration<<endl;
    //cout<<"The value of f(x) at the root = "<<fx(radians, velocity, kr, uc, q, b, root)<<endl<<endl;

    outfile(angle, velocity, root);
}

// Defines "fx" 
double fx(double radians,double velocity, double kr, double uc, double q, double b, double ts)
{
    return kr * pow(ts,4.0) + uc * ts - q - pow((velocity / b), 2.0) * sin(radians);
}

void writetable(double kr, double uc, double q, double b)
{
    cout <<endl << "Input Parameters:" <<endl;
    cout<< "Kr(1/K^2)=" << kr << endl << "uc(1/K)=" << uc <<endl << "q(unitless)=" << q << endl << "b(mph)=" << b<< endl; 
    cout << "  angle..............velocity...........surface temp..............safe..........";
    cout << "  degs...............mph................Kelvin.....................?............";
    cout << "--------------------------------------------------------------------------------";      
}

void writedata (double angle, double velocity, double root)
{
    cout << left << "  " << angle << "                 "<<  velocity << "                 "<< fixed << setprecision(0) << setw(5) <<root<< "                 ";
    if(root <1000) 
        cout << "safe"<< endl; 
    else 
        cout << "unsafe" <<endl;
}

void tableout(double kr, double uc, double q, double b)
{
    ofstream dataout ("results.txt");
    dataout<<endl << "Input Parameters:" <<endl;
    dataout<< "Kr(1/K^2)=" << kr << endl << "uc(1/K)=" << uc <<endl << "q(unitless)=" << q << endl << "b(mph)=" << b<< endl; 
    dataout << "  angle..............velocity...........surface temp..............safe.........."<< endl;
    dataout << "  degs...............mph................Kelvin.....................?............"<< endl;
    dataout << "--------------------------------------------------------------------------------"<< endl;
}

void outfile (double angle, double velocity, double& root)                    
{
    ofstream dataout ("results.txt");
    dataout << left << "  " << angle << "                 "<<  velocity << "                 "<< fixed << setprecision(0) << setw(5) <<root<< "                 ";
    if(root <1000) 
        dataout << "safe"<< endl; 
    else 
        dataout << "unsafe" <<endl;
}

1 个答案:

答案 0 :(得分:1)

open中的outfile是否成功。您已在main中打开了输出文件;某些系统不允许同一个文件打开两次,或者打开两次输出。 (由于您不使用main中的打开文件,为什么要在那里打开?)