home *** CD-ROM | disk | FTP | other *** search
- # include <math.h>
-
-
- float IFunction(float y)
- {
- float _fret;
-
- _fret = exp(y);
- return(_fret);
- }
-
-
- float YPrime(float x,float y)
- {
- float _fret;
-
- _fret = exp(2*x)+y;
- return(_fret);
- }
-
-
- void IntegratFunction(int numseg,float xl,float xh,float *ans)
- {
- int i;
- int k;
- int segcntr;
- float strtpnt;
- float endpnt;
- float area1;
- float area2;
- float area;
- char even;
- float segwidth;
- segwidth = (xh - xl) / numseg;
- endpnt = xh;
- area1 = 0.0;
- area2 = 0.0;
- area = 0.0;
- if ( fmod(numseg,2) != 0 ) {
- area1 = 3.0 / 8.0 * segwidth * (IFunction(endpnt - 3.0 * segwidth) +
- 3.0 * IFunction(endpnt - 2.0 * segwidth) +
- 3.0 * IFunction(endpnt - segwidth) + IFunction(endpnt));
- endpnt = endpnt - 3.0 * segwidth;
- }
- else {
- area1 = 0.0;
- }
- if ( numseg != 3 ) {
- strtpnt = xl;
- while ( (strtpnt < endpnt - segwidth) ) {
- area2 = area2 + 1.0 / 3.0 * (segwidth * (IFunction(strtpnt) + 4.0 *
- IFunction(strtpnt + segwidth) + IFunction(strtpnt + 2.0 * segwidth)));
- strtpnt = strtpnt + 2.0 * segwidth;
- }
- }
- area = area1 + area2;
- (*ans) = area;
- }
-
- void IntegratVector(float y[],float samper,int xl,int xh,float *ans)
- {
- int numseg;
- int i;
- int strtpnt;
- int endpnt;
- int segcntr;
- float area1;
- float area2;
- float area;
- char even;
- float segwidth;
-
- numseg = xh - xl;
- segwidth = samper;
- endpnt = xh;
- area1 = 0.0;
- area2 = 0.0;
- area = 0.0;
- if ( fmod(numseg,2) != 0 ) {
- area1 = 3.0 / 8.0 * segwidth * (y[endpnt - 3] + 3.0 *
- y[endpnt - 2] + 3.0 * y[endpnt - 1] + y[endpnt]);
- endpnt = endpnt - 3;
- }
- else {
- area1 = 0.0;
- }
- if ( numseg != 3 ) {
- strtpnt = xl;
- do {
- area2 = area2 + 1.0 / 3.0 * segwidth * (y[strtpnt] + 4.0
- * y[strtpnt + 1] + y[strtpnt + 2]);
- strtpnt = strtpnt + 2;
- } while ( ! (strtpnt == (endpnt)) );
- }
- area = area1 + area2;
- (*ans) = area;
- }
-
- void RungeKutta(float XKnown,float YKnown,float x,float et,float h,
- float HMin,float *YEst,char *status)
- {
- # define NearZero 1.0e-20
- float xc2;
- float xc3;
- float xc4;
- float xc5;
- float xc6;
- float dc21;
- float dc31;
- float dc32;
- float dc41;
- float dc42;
- float dc43;
- float dc51;
- float dc52;
- float dc53;
- float dc54;
- float dc61;
- float dc62;
- float dc63;
- float dc64;
- float dc65;
- float yc1;
- float yc3;
- float yc4;
- float yc5;
- float yc6;
- float ec1;
- float ec3;
- float ec4;
- float ec5;
- float ec6;
- float d1;
- float d2;
- float d3;
- float d4;
- float d5;
- float d6;
- float error;
- float XEst;
- float EtDiv32;
- int st;
-
- xc2 = 0.25;
- xc3 = 3.0 / 8.0;
- xc4 = 12.0 / 13.0;
- xc5 = 1.0;
- xc6 = 0.5;
- dc21 = 0.25;
- dc31 = 3.0 / 32.0;
- dc32 = 9.0 / 32.0;
- dc41 = 1932.0 / 2197.0;
- dc42 = 7200.0 / 2197.0;
- dc43 = 7296.0 / 2197.0;
- dc51 = 439.0 / 216.0;
- dc52 = 8.0;
- dc53 = 3680.0 / 513.0;
- dc54 = 845.0 / 4104.0;
- dc61 = 8.0 / 27.0;
- dc62 = 2.0;
- dc63 = 3544.0 / 2565.0;
- dc64 = 1859.0 / 4104.0;
- dc65 = 11.0 / 40.0;
- yc1 = 25.0 / 216.0;
- yc3 = 1408.0 / 2565.0;
- yc4 = 2197.0 / 4104.0;
- yc5 = 0.20;
- ec1 = 1.0 / 360.0;
- ec3 = 128.0 / 4275.0;
- ec4 = 2197.0 / 75240.0;
- ec5 = 0.02;
- ec6 = 2.0 / 55.0;
- EtDiv32 = et / 32.0;
- XEst = XKnown;
- (*YEst) = YKnown;
- st = 0;
- while ( st == 0 ) {
- d1 = YPrime(XEst,(*YEst));
- d2 = YPrime(XEst + h * xc2,(*YEst) + h * dc21 * d1);
- d3 = YPrime(XEst + h * xc3,(*YEst) + h * (dc31 * d1 + dc32 * d2));
- d4 = YPrime(XEst + h * xc4,(*YEst) + h * (dc41 * d1 - dc42 * d2 + dc43 * d3));
- d5 = YPrime(XEst + h * xc5,(*YEst) + h * (dc51 * d1 - dc52 * d2 + dc53 * d3 - dc54 * d4));
- d6 = YPrime(XEst + h * xc6,(*YEst) + h * (-dc61 * d1 + dc62 * d2 - dc63 * d3 + dc64 * d4 - dc65 * d5));
- error = h * (ec1 * d1 - ec3 * d3 - ec4 * d4 + ec5 * d5 + ec6 * d6);
-
- if ( error < (h * et) ) {
-
- XEst = XEst + h;
- (*YEst) = (*YEst) + h * (yc1 * d1 + yc3 * d3 + yc4 * d4 - yc5 * d5);
- if ( fabs(x - XEst) > NearZero ) {
- if ( error <= h * EtDiv32 ) {
- h = h * 2.0;
- }
- if ( h > (x - XEst) ) {
- h = x - XEst;
- }
- }
- else {
- st = 1;
- }
- }
- else {
- h = h / 2;
- if ( h < HMin ) {
- st = 2;
- }
- }
- if ( st == 2 ) {
- (*status) = 0;
- }
- else {
- (*status) = 1;
- }
- }
- }
-