// Calculation Program for displaying a ?-shaped curve 1, 03 (Wed.) Mar., 2010
// file name:Q_curve_1.c
#include< stdio.h>
#include< math.h>
void main(void)
{
double x,y,a,b,c,k,p,q,pi;// // pi is the Pi.
double t,dt;// intermediate variable and its increment
double tmax;// the maximum value of t
double xx[10001],yy[10001];// Take care of the upper limit of storage memory capacitance.
int i,imax;
FILE *fp;
// Setting of the constants
a=-0.1;
b=0.4;
c=0.8;
k=1.0;
p=8.;
q=0.3;
pi=3.1415927;
// Setting of the other parameters
tmax=4.0*pi;
dt=2*tmax/4000;// plotting interval of t
// execution of calculation
i=0;
for(t=-tmax;t<=tmax;t=t+dt)
{
i++;
x=a*((1.-exp(-p*t*t))/(exp(-p*t*t)+1.))+c*t*t*exp(-q*t*t*t*t)*cos(k*t*t);
y=b*((1.-exp(-p*t*t))/(exp(-p*t*t)+1.))+c*t*t*exp(-q*t*t*t*t)*sin(k*t*t);
yy[i]=y;
xx[i]=x;
printf("i=%d,x=%f,y=%f\n",i,x,y);
}
imax=i;
fp=fopen("Q_curve.txt","w");
if(fp==NULL)
{
printf("FILE OPEN ERROR\n");
}
else
{
for(i=1;i<=imax;i++)
{
fprintf(fp,"%f,%f\n",xx[i],yy[i]);
}
fflush(fp);
fclose(fp);
}
printf("end\n");
}// the end of the program
RETURN