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



// file name:S_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.6;// 0.6

	b=0.6;// 0.6

	c=2.8;// 2.8

	k=1.0;// 1.0

	p=2.0;// 2.0

	q=1.6;// 1.6

	

	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*((exp(p*t)-1.)/(exp(p*t)+1.))-c*t*exp(-q*t*t)*cos(k*t*t);

		y=b*((exp(p*t)-1.)/(exp(p*t)+1.))+c*t*exp(-q*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("S_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





戻る