// [このプログラムの目的]1個の ?字曲線を媒介変数を用いて描くこと,2010年3月3日(水)



// file name:Q_curve.c



#include< stdio.h>

#include< math.h>



void main(void)

{

	double x,y,a,b,c,k,p,q,pi;// pi は円周率

	double t,dt;// 媒介変数とその変分

	double tmax;// t の最大値

	double xx[10001],yy[10001];// メモリ容量に注意

	int i,imax;



	FILE *fp;



//  定数設定

	a=-0.1;

	b=0.4;

	c=0.8;

	k=1.0;

	p=8.;

	q=0.3;

	

	pi=3.1415927;

	 

//  他のパラメータ設定

	tmax=4.0*pi;

	dt=2*tmax/4000;// t のプロット間隔



//  計算実行

	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





戻る