• 大小: 12.53MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-14
  • 语言: 其他
  • 标签:

资源简介

电子设计大赛论文精选。几年的电子设计大赛获奖优秀作品的论文选集

资源截图

代码片段和文件信息

extern 			g_Speechary[];
extern  g_array[];
extern g_speechID;

unsigned int  g_uiAx;
/*******************电阻计算******************************/
void R_display(float Rx)
{   
if(Rx<100)
{   
g_array[3]=5;
g_array[2]=5;
g_array[1]=5; 
g_array[0]=5;
/*******************************/
//电阻小于100欧姆
g_speechID=1;
g_Speechary[0]=20;
}
if((Rx>=100)&&(Rx<=999))
{
g_uiAx=(unsigned int)Rx;
g_array[3]=g_uiAx/100;
g_array[2]=g_uiAx%100/10;
g_array[1]=(g_uiAx%100)%10; 
g_array[0]=0;
/********************************/
//几百几十欧姆
g_Speechary[0]=g_array[3];
g_Speechary[1]=12;
if(g_array[2]==0)//几百欧姆
{ g_speechID=3;
g_Speechary[2]=16;
}
g_Speechary[2]=g_array[2];
g_Speechary[3]=11;
g_Speechary[4]=16;
g_speechID=5;

}
if((Rx>=1000)&&(Rx<=9999))

{
g_uiAx=(unsigned int)Rx;
g_array[3]=g_uiAx/1000;
g_array[2]=(g_uiAx%1000)/100;
g_array[1]=((g_uiAx%1000)%100)/10; 
g_array[0]=1;
/********************************/
//几点几K欧姆
g_Speechary[0]=g_array[3];
g_Speechary[1]=10;
g_Speechary[2]=g_array[2];
g_Speechary[3]=13;
g_Speechary[4]=16;
g_speechID=5;

}
if((Rx>=10000)&&(Rx<=99999))
{   Rx/=100;
g_uiAx=(unsigned int)Rx;
g_array[3]=g_uiAx/100;
g_array[2]=(g_uiAx%100)/10;
g_array[1]=(g_uiAx%100)%10; 
g_array[0]=2;
/********************************/
//几十几K欧姆
g_Speechary[0]=g_array[3];
g_Speechary[1]=11;
g_Speechary[2]=g_array[2];
g_Speechary[3]=13;
g_Speechary[4]=16;
g_speechID=5;

}
if((Rx>=100000)&&(Rx<=999999))
{   Rx/=1000;
g_uiAx=(unsigned int)Rx;
g_array[3]=g_uiAx/100;
g_array[2]=(g_uiAx%100)/10;
g_array[1]=(g_uiAx%100)%10; 
g_array[0]=3;
/********************************/
//几百几十K欧姆
g_Speechary[0]=g_array[3];
g_Speechary[1]=12;
if(g_array[2]==0)//几百K欧姆
{ g_Speechary[2]=13;
g_Speechary[3]=16;
g_speechID=4;
}
else
{
g_Speechary[2]=g_array[2];
g_Speechary[3]=11;
g_Speechary[4]=13;
g_Speechary[5]=16;
g_speechID=6;
}

}
if(Rx==1000000)
{
g_array[3]=1;
g_array[2]=0;
g_array[1]=0; 
g_array[0]=4;
/********************************/
//1M欧姆
g_Speechary[0]=1;
g_Speechary[1]=15;
g_Speechary[2]=16;
g_speechID=3;
}
if(Rx>1000000)
{
g_array[3]=0;
g_array[2]=0;
g_array[1]=0; 
g_array[0]=0;
/*******************************/
//电阻大于1M欧姆
g_speechID=1;
g_Speechary[0]=21;
}


}
//*****************电容计算***************************************//
void C_display(float Cx)
{  
if(Cx<100)
{
g_array[3]=5;
g_array[2]=5;
g_array[1]=5; 
g_array[0]=5;
//////////////////////////////////////////电容小于100PF
g_speechID=1;
g_Speechary[0]=22;
}
if((Cx>=100)&&(Cx<=999))
{
g_uiAx=(unsigned int)Cx;
g_array[3]=g_uiAx/100;
g_array[2]=g_uiAx%100/10;
g_array[1]=(g_uiAx%100)%10; 
g_array[0]=0;
/********************************/
//几百几十PF
g_Speechary[

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     229376  2006-05-15 15:06  数控直流恒流源.DDB

----------- ---------  ---------- -----  ----

               229376                    1


评论

共有 条评论