C实现分子沉积模拟的示例代码

 更新时间:2013年11月19日 14:40:26   作者:  
这篇文章主要介绍了计算机在材料科学中的一个练习题,功能是模拟气化后分子沉积

复制代码 代码如下:

/******************分子沉积模拟器****************/
/* 主要功能:模拟单片分子沉积                    */
/*-------------------By TJX---------------------*/

#include<stdio.h>
#include<graphics.h>
#include<alloc.h>
#include<stdlib.h>
#include<time.h>
float dir;    /*移动方向概率参数在0-1间*/
int main()
{int i,count=0;                /*设置分子总数*/
int gdriver=DETECT, gmode,errorcode,size;
int x,y;
time_t lt;
unsigned seed;
char **a;
void *buf,*buf1;
a=(char**)malloc(100*sizeof(char*));     /*分配内存空间*/
for(i=0;i<100;i++)
    {a[i]=(char*)malloc(167*sizeof(char));
     memset(a[i],0,167);}         /*用0初始化数组,0代表该处无分子,1代表有分子*/
lt=time(NULL);
seed=(unsigned)lt;
srand(seed);                    /*用时间初始化随机器*/
printf("\n\n\n\n\tPlease Input The Pf(0<=pf<=1):\n");
do{
     scanf("%f",&dir);                  /*获取移动方向概率参数*/
     getch();
    }while(dir<0||dir>1);

clrscr();

initgraph(&gdriver, &gmode, "c:\\tc");     /*初始化图形驱动*/
     errorcode = graphresult();              /*检测是否初始化成功*/
    if (errorcode != grOk) /* an error occurred 错误发生则退出*/
    {
       printf("Graphics error: %s\n", grapherrormsg(errorcode));
       printf("Press any key to halt:");
       getch();
       for(i=0;i<100;i++) free(a[i]);
       free(a);
       exit(1); /* terminate with an error code */
    }
    setbkcolor(BLUE);            
    cleardevice();
    size=imagesize(2,2,4,4);               /*返回用于橡皮擦的图片字节数*/
    buf=malloc(size);               /*为其分配内存*/
    size=imagesize(9,49,11,51);         /*返回用于覆盖的图片字节数*/
    buf1=malloc(size);              
    drawscreen(buf,buf1);
    drawtxtscr(dir);               /*绘制界面*/
    putimage(9,49,buf,COPY_PUT);         /*清除9,49处的分子*/
    getch();
    do{
       x=3*(int)(166.0*(rand()/32767.0));    /*随机生成分子出现位置*/     
       move(x,a,buf,buf1);              /*分子移动*/
       }while(++count<10);
    getch();
    closegraph();
    free(buf);
    free(buf1);                    /*释放内存*/                        
    for(i=0;i<100;i++) free(a[i]);
    free(a);
    return 0;
}

drawtxtscr()
{ int ud[8]={10,320,490,320,490,400,10,400};
    char s[60];
    setcolor(YELLOW);
    setlinestyle(0,0,NORM_WIDTH);
    setfillstyle(1,CYAN);
    fillpoly(4,ud);
    sprintf(s,"The downwards probobility of the atom equal:\n%.1f",dir);
    settextstyle(2,0,4);
    outtextxy(30,335,s);
    settextstyle(4,0,2);
    outtextxy(190,375,"---TJX---");
    }
drawscreen(void *bu,void *bu1)               /*绘制工作区*/
{ int userdata[8]={0,0,501,0,501,300,0,300};
    int size;
    setbkcolor(BLUE);
    cleardevice();
    setcolor(GREEN);
    setlinestyle(0,0,NORM_WIDTH);      /*设置线形*/
    setviewport(69,69,639,479,1);     /*设置显示区*/
    setfillstyle(1,GREEN);         
    fillpoly(4,userdata);
    getimage(2,2,4,4,bu);                /*将获取模拟橡皮擦存入内存*/
    setcolor(YELLOW);
    setfillstyle(1,YELLOW);
    circle(10,50,1);               /*绘制模拟分子*/
    floodfill(10,50,YELLOW);          /*填充黄色*/
    getimage(9,49,11,51,bu1);          /*将模拟分子存入内存*/
}
move(int x,char **a,void *buf,void *buf1)
{ float dirction;
int sx,sy=0,i,j,end=0,start=0;
sx=x;
do{
      if(sx==0) start=1;               /*判定分子出现位置*/
      else if(sx>0&&sx<498) start=2;
      else start=3;
      j=sx/3;                    /*记录*/
      i=sy/3;
      if(start==1&&sy<297&&(a[i+1][j]+a[i][j+1])==0) /*判定其四周是否有分子存在*/
        { dirction=(float)(rand()/32627.0);      /*随机生成分子运动方向*/
          if(dirction<=dir) {sy=sy+3 ;
                             putimage(sx,sy,buf1,COPY_PUT);
                             putimage(sx,sy-3,buf,COPY_PUT);}
          else if(dirction>dir&&dirction<=(1+dir)/2)
                            {sy=sy+3;
                             putimage(sx,sy,buf1,COPY_PUT);
                             putimage(sx,sy-3,buf,COPY_PUT);}
          else if(dirction>(1+dir)/2 && dirction<=1.0)
                             { sx=sx+3;             
                               putimage(sx,sy,buf1,COPY_PUT);
                               putimage(sx-3,sy,buf,COPY_PUT); }
          }                        
       else if(start==2&&sy<297&&(a[i][j-1]+a[i+1][j]+a[i][j+1])==0)
           { dirction=(float)(rand()/32627.0);
           if(dirction<=dir) {sy=sy+3;
                             putimage(sx,sy,buf1,COPY_PUT);
                             putimage(sx,sy-3,buf,COPY_PUT);}
          else if(dirction>dir&&dirction<=(1+dir)/2)
                            {sx=sx-3;
                             putimage(sx,sy,buf1,COPY_PUT);
                             putimage(sx+3,sy,buf,COPY_PUT);}
          else if(dirction>(1+dir)/2 && dirction<=1.0)
                             { sx=sx+3;             
                               putimage(sx,sy,buf1,COPY_PUT);
                               putimage(sx-3,sy,buf,COPY_PUT); }
            }
       else if(start==3&&sy<297&&(a[i][j-1]+a[i+1][j])==0)
           { dirction=(float)(rand()/32627.0);
            if(dirction<=dir) {sy=sy+3 ;
                             putimage(sx,sy,buf1,COPY_PUT);
                             putimage(sx,sy-3,buf,COPY_PUT);}
            else if(dirction>dir&&dirction<=(1+dir)/2)
                            {sx=sx-3;
                             putimage(sx,sy,buf1,COPY_PUT);
                             putimage(sx+3,sy,buf,COPY_PUT);}
            else
                             { sy=sy+3;             
                               putimage(sx,sy,buf1,COPY_PUT);
                               putimage(sx,sy-3,buf,COPY_PUT); }
             }
         else end=1;
      }while(!end);
     a[i][j]=1;
}

相关文章

  • C语言中反斜杠的作用及说明

    C语言中反斜杠的作用及说明

    这篇文章主要介绍了C语言中反斜杠的作用及说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-07-07
  • 使用C++的inipp库处理配置文件.ini的示例详解

    使用C++的inipp库处理配置文件.ini的示例详解

    一个ini文件由多个节section组成,每个节由多个键值对组成,本文给大家介绍了使用第三方库inipp来操作ini文件,文中通过代码示例讲解的非常详细,需要的朋友可以参考下
    2024-01-01
  • C++中vector和数组之间的转换及其效率问题详解

    C++中vector和数组之间的转换及其效率问题详解

    c++ vector转数组是一种将vector容器的元素转换为数组的方法,主要能帮助提高程序的性能和效率,下面这篇文章主要给大家介绍了关于C++中vector和数组之间的转换及其效率问题的相关资料,需要的朋友可以参考下
    2023-03-03
  • C++实现神经BP神经网络

    C++实现神经BP神经网络

    这篇文章主要为大家详细介绍了C++实现神经BP神经网络,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-05-05
  • OpenCV轮廓检测之boundingRect绘制矩形边框

    OpenCV轮廓检测之boundingRect绘制矩形边框

    在进行文本检测时,我们常常会用矩形边框将检测到的内容框除。这篇文章主要为大家介绍的是OpenCV中能实现这一效果的函数:boundingRect,感兴趣的同学可以学习一下
    2021-12-12
  • C++实现strcpy函数实例

    C++实现strcpy函数实例

    这篇文章主要介绍了C++实现strcpy函数实例,步骤讲解的很详细,对大家的学习或工作具有一定的参考借鉴价值,感兴趣的朋友跟随小编一起来研究吧
    2020-12-12
  • 基于c++中的默认拷贝函数的使用详解

    基于c++中的默认拷贝函数的使用详解

    本篇文章对c++中默认拷贝函数的使用进行了详细的分析介绍。需要的朋友参考下
    2013-05-05
  • C++实现LeetCode(59.螺旋矩阵之二)

    C++实现LeetCode(59.螺旋矩阵之二)

    这篇文章主要介绍了C++实现LeetCode(59.螺旋矩阵之二),本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下
    2021-07-07
  • C语言实现单链表的示例详解

    C语言实现单链表的示例详解

    给需要考研的同学一个参考,单链表作为常见数据结构的一种,这里记录C语言实现单链表,文章通过代码示例介绍的非常详细,具有一顶的参考价值,需要的朋友可以参考下
    2023-09-09
  • C语言中枚举与联合体的使用方法(enum union)

    C语言中枚举与联合体的使用方法(enum union)

    枚举的意思就是列举,将每一个可能的取值都进行一一列举,下面这篇文章主要给大家介绍了关于C语言中枚举与联合体的使用方法,需要的朋友可以参考下
    2021-09-09

最新评论