/*
  Eliza Dubroff
  4/24/97
  ps7#2
  p2.cc
  */

#include <iostream.h>
#include "beam.h"


void main()
{
  double L;
  double Q,w,H;
  double E,I;
  double h;

  cout << "Please enter the length of the beam (ft): ";
  cin >> L;
  cout << endl;

  cout << "Please enter the load at the tip of the beam (lbs): ";
  cin >> Q;
  cout << endl;

  cout << "Please enter the uniform load applied to the beam (lbs/ft): ";
  cin >> w;
  cout << endl;

  cout << "Please enter the axial load on the beam (lbs): ";
  cin >> H;
  cout << endl;

  cout << "Please enter the modulus of Elasticity of the beam (psf/10^7): ";
  cin >> E;
  cout << endl;
  
  cout << "Please enter the moment of inertia of the beam (ft^4*10^4): ";
  cin >> I;
  cout << endl;

  cout << "Please enter the size of the step: ";
  cin >> h;
  cout << endl;

  beam my_beam(L,Q,w,H,E,I);

  my_beam.RK4(h);
}

  
