// Calculation Program for calculation of a spade curve,Mar. 10, 2010.



// file spade_a.c



#include< stdio.h>

#include< math.h>



void main(void)

{

	double x,y,a,b,c,d,k,p,q,pi;// pi is the Pi.



	double t,dt;// intermediate variable and its increment

	double tmax;// the maximum value of intermediate variable

	double xx[10001],yy[10001];
// Take care of the upper limit of storage memory capacitance.

	int i,imax;



	FILE *fp;



// setting of the constant

	a=0.0;

	b=1.0;

	c=1.19;

	d=1.5;

	k=0.115;

	p=2.0;

	q=0.58;

	

	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*t*exp(-q*t*t)*cos(k*t*t*t);

y=b*((1.-exp(-p*t*t))/(exp(-p*t*t)+1.))+d*t*t*t*exp(-q*t*t)*sin(k*t*t*t);

		yy[i]=-y;

		xx[i]=x;

		printf("i=%d,x=%f,y=%f\n",i,x,y);

		}

	imax=i;



// writing the calculated coordinates data of the spade curve into a textfile

	fp=fopen("spade.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