版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報或認(rèn)領(lǐng)
文檔簡介
1、濟(jì)南大學(xué)機(jī)械工程學(xué)院計算機(jī)輔助機(jī)械設(shè)計實(shí)驗(yàn)指導(dǎo)書機(jī)械設(shè)計系王玉增一、實(shí)驗(yàn)?zāi)康?計算機(jī)輔助機(jī)械設(shè)計是一門實(shí)踐性較強(qiáng)的課程,學(xué)生通過上機(jī)計算達(dá)到以下目的: 1、加深對計算機(jī)輔助機(jī)械設(shè)計設(shè)計方法的基本理論和算法步驟的理解。 2、培養(yǎng)學(xué)生獨(dú)立編制、調(diào)試計算機(jī)程序的能力。 3、掌握常用計算機(jī)輔助機(jī)械設(shè)計程序的使用方法。4、培養(yǎng)學(xué)生靈活運(yùn)用所學(xué)方法解決工程實(shí)際問題的能力。 二、實(shí)驗(yàn)項(xiàng)目、學(xué)時分配及對每個實(shí)驗(yàn)項(xiàng)目的要求序號實(shí)驗(yàn)項(xiàng)目學(xué)時數(shù)實(shí) 驗(yàn) 要 求1鏈表21、明確鏈表建立及編輯的基本原理及程序框圖2、編制鏈表建立及編輯程序3、用考核題對所編程序進(jìn)行考核2二叉樹21、明確二叉樹建立及遍歷的基本原理及程序框圖
2、2、編制二叉樹建立及遍歷程序3、用考核題對所編程序進(jìn)行考核3參數(shù)化圖素拼裝原理實(shí)驗(yàn)21、明確參數(shù)化圖素拼裝原理及程序框圖2、編制參數(shù)化圖素拼裝程序3、用考核題對所編程序進(jìn)行考核4設(shè)計資料的程序處理21、明確設(shè)計資料的程序處理的基本原理及程序框圖2、編制設(shè)計資料的程序處理程序3、用考核題對所編程序進(jìn)行考核5三角帶傳動的程序設(shè)計21、明確三角帶傳動的基本算法步驟及程序框圖2、編制三角帶傳動的程序設(shè)計程序3、用考核題對所編程序進(jìn)行考核三、實(shí)驗(yàn)報告內(nèi)容 每次上機(jī)實(shí)驗(yàn)結(jié)束后,學(xué)生要作一份完整的實(shí)驗(yàn)報告,實(shí)驗(yàn)報告內(nèi)容應(yīng)包括:1、實(shí)驗(yàn)的基本原理簡述及程序框圖繪制。2、編制實(shí)驗(yàn)程序。3、用考核題對所編程序進(jìn)行
3、考核。 四、實(shí)驗(yàn)考核辦法 本課程實(shí)驗(yàn)成績依據(jù)以下幾個方面進(jìn)行考核 1、實(shí)驗(yàn)報告 2、考核所編制的程序 3、實(shí)驗(yàn)紀(jì)律、出勤等實(shí)驗(yàn)一 鏈表1 用鏈表的方法編寫減速箱零件清單(包括序號、名稱、數(shù)量、材料)的管理程序,要求提供插入、刪除、列表功能。 減速箱零件清單序號名稱數(shù)量材料1箱體1ht1002箱蓋1ht1003齒輪軸1454軸1455齒輪1456端蓋1ht100實(shí)驗(yàn)程序清單#include stdafx.h#include stdio.h#include malloc.h#include string.htypedef struct _taglinkint no,num;char name10,
4、mat10;struct _taglink *next; link;link *head=null;void output(link *t)printf(%5d%15s%5d%15sn,t-no,t-name,t-num,t-mat);/插入void insert(int no,char *name,int num,char *mat)link *node=(link *)malloc(sizeof(link);node-no=no; strcpy(node-name,name);node-num=num; strcpy(node-mat,mat);node-next=head; head=n
5、ode;/查詢void check(int no)link *t=head;while(t) if(t-no=no) output(t); break; else t=t-next;/刪除void delete(int no)link *p,*t;p=t=head;while(t & t-no!=no) p=t; t=t-next;if(t=null) printf(未找到%dn,no); return;if(p=t) head=head-next; free(t); else p-next=t-next; free(t);/列表輸出void outputall()link *t=head;w
6、hile(t)output(t); t=t-next;int main(int argc, char* argv)for(;) int code;printf(減速箱零件查詢系統(tǒng)nnn);printf(0-退出1-輸入n);printf(2-查詢3-刪除n);printf(4-列表n);printf(請選擇:); scanf(%d,&code);if(code=0) break;switch(code)case 1: int no,num; char name10,mat10; for(;) printf(序號:); scanf(%d,&no);if(no=0) break; printf(名
7、稱:); scanf(%s,&name); printf(數(shù)量:); scanf(%d,&num); printf(材料:); scanf(%s,&mat); insert(no,name,num,mat); break;case 2: int no; printf(輸入查詢的序號:); scanf(%d,&no);check(no);break;case 3: int no; printf(輸入刪除的序號:); scanf(%d,&no);delete(no);break;case 4: outputall(); break;return 0;實(shí)驗(yàn)二 二叉樹1. 建立排序二叉樹、遍歷排序二叉
8、樹2. 編寫建立和遍歷二叉排序樹的程序。3. 實(shí)驗(yàn)數(shù)據(jù):18,14,22,7,17,20,35,27,11,3,204. 程序清單:#include stdafx.h#include stdio.h#include malloc.htypedef struct _taglink struct _taglink *lc,*rc;int data; link;link *head;int a=18,14,22,7,17,20,35,27,11,3,20;int n=sizeof(a)/sizeof(int);/建立二叉排序樹的函數(shù)void built()for(int i=0; idata=ai;
9、node-lc=node-rc=null;if(i=0) head=node; continue;temp=head;for(;) if(aidata) if(temp-lc=null) temp-lc=node; break;else temp=temp-lc; else if(temp-rc=null) temp-rc=node; break;else temp=temp-rc; /用中序遍歷二差樹,輸出結(jié)果為排序的數(shù)據(jù)void output()link *stack50;int top=0;link *p=head;for(;) if(p!=null) stacktop+=p;p=p-l
10、c; else if(top=0) break;p=stack-top;printf(%dn,p-data);p=p-rc;int main(int argc, char* argv)built();output();return 0;實(shí)驗(yàn)三 參數(shù)化圖素拼裝原理實(shí)驗(yàn)實(shí)驗(yàn)內(nèi)容:編制構(gòu)成軸的七種形狀特征的函數(shù),并利用這些函數(shù)生成一根軸。 構(gòu)成軸的七種結(jié)構(gòu)形式 傳動軸程序示例void ctspzview:drawunit_arc(cdc *pdc,int r,cpoint p0,cpoint p1,cpoint p2)crect rect(p0.x-r,p0.y-r,p0.x+r,p0.y+r);p
11、dc-arc(&rect,p1,p2);void ctspzview:drawunit_a(cdc *pdc,cpoint p0,int d,int c,bool v)p2.x=p3.x=p0.x;p2.y=p0.y-(d/2-c);p3.y=p0.y+(d/2-c);p1.x=p4.x=p0.x+(v?(-c):c);p1.y=p0.y-d/2;p4.y=p0.y+d/2;pdc-moveto(p1);pdc-lineto(p2);pdc-lineto(p3);pdc-lineto(p4);void ctspzview:drawunit_b(cdc *pdc,cpoint p0,int d,
12、int b,bool v)void ctspzview:drawunit_c(cdc *pdc,cpoint p0,int d,int b,bool v)void ctspzview:drawunit_d(cdc *pdc,cpoint p0,int d,int b,bool v)void ctspzview:drawunit_e(cdc *pdc,cpoint p0,int d,int b,int r,bool v)void ctspzview:drawunit_f(cdc *pdc,cpoint p0,int d,int b,int l)p5.x=p4.x=p0.x+(l-d/2);p5.
13、y=p1.y=p0.y-b/2;p4.y=p3.y=p0.y+b/2;int t=(int)(sqrt(d*d/4.0-b*b/4.0)+0.5);p1.x=p3.x=p0.x+t;drawunit_arc(pdc,d/2,p0,p1,p3);pdc-moveto(p1);pdc-lineto(p5);pdc-lineto(p4);pdc-lineto(p3);void ctspzview:drawunit_g(cdc *pdc,cpoint p0,int b,int l)void ctspzview:ontspza() cclientdc dc(this);drawunit_a(&dc,cp
14、oint(200,300),100,10);drawunit_a(&dc,cpoint(300,300),100,10,false);/cdc *pdc,cpoint p0,int d,int c,bool v)void ctspzview:ontspz0() / todo: add your command handler code herevoid ctspzview:ontspzb() / todo: add your command handler code herevoid ctspzview:ontspzc() / todo: add your command handler co
15、de herevoid ctspzview:ontspzd() / todo: add your command handler code herevoid ctspzview:ontspze() / todo: add your command handler code herevoid ctspzview:ontspzf() / todo: add your command handler code herecdlgdrawf dlg;if(dlg.domodal()!=idok) return;cclientdc dc(this);drawunit_f(&dc,cpoint(dlg.m_
16、x0,dlg.m_y0),dlg.m_d,dlg.m_b,dlg.m_l);void ctspzview:ontspzg() / todo: add your command handler code herevoid ctspzview:ontspzm() / todo: add your command handler code here實(shí)驗(yàn)四 設(shè)計資料的程序處理實(shí)驗(yàn)內(nèi)容及要求:編制下列函數(shù)及相應(yīng)的主程序來調(diào)用這些函數(shù)。保證輸出結(jié)果正確。1. 制查三角膠帶型號的函數(shù)(參見圖5-5)。要求輸入轉(zhuǎn)速和功率,輸出型號。2. 編制“一元函數(shù)插值”的函數(shù),實(shí)驗(yàn)數(shù)據(jù)見表5-7.3. 編制“二元函數(shù)插值
17、”的函數(shù),實(shí)驗(yàn)數(shù)據(jù)見表5-7.4. 編制“最小二乘法求線形方程” 的函數(shù),實(shí)驗(yàn)數(shù)據(jù)見表5-11.#include stdafx.h#include math.h#include stdio.h/找三角膠帶型號 輸入?yún)?shù) n-轉(zhuǎn)速;p-功率/函數(shù)返回值:0-o型 1-a型 2-b型 3-c型 4-d型 5-e型 6-f型int find_type(double n,double p)double a64=4900,3.8,490,0.8, 3400,10.5,100,1, 2400,22.5,100,2.7, 1500,36,100,5.9, 1200,85,100,17.5, 700,170,
18、100,44;int i;double c;for(i=0; i=ai0) return i; c=log10(ai2)+(log10(ai0)-log10(ai2)* (log10(p)-log10(ai3)/(log10(ai1)-log10(ai3); if(n=pow(10.0,c) return i;return 6;/一元函數(shù)線形插值/xx,yy-節(jié)點(diǎn)數(shù)據(jù),n-節(jié)點(diǎn)個數(shù)int find_liner(double *xx,double *yy,int n,double x,double *y)double x1,y1,x2,y2;int i=0;if(xxxn-1) return 0
19、;while(xxxi) i+;i-;x1=xxi; y1=yyi;x2=xxi+1; y2=yyi+1;*y=y1+(x-x1)*(y2-y1)/(x2-x1);return 1;/一元函數(shù)拋物線插值/xx,yy-節(jié)點(diǎn)數(shù)據(jù),n-節(jié)點(diǎn)個數(shù)int find_quadric(double *xx,double *yy,int n,double x,double *y)double x1,y1,x2,y2,x3,y3;int i=0;if(xxxn-1) return 0;while(xxxi) i+;i-;if(x-xxi)(xxi+1-x) i-;if(in-3) i=n-3;x1=xxi; y
20、1=yyi;x2=xxi+1; y2=yyi+1;x3=xxi+2; y3=yyi+2;*y=0;*y+=y1*(x-x2)*(x-x3)/(x1-x2)/(x1-x3);*y+=y2*(x-x1)*(x-x3)/(x2-x1)/(x2-x3);*y+=y3*(x-x1)*(x-x2)/(x3-x1)/(x3-x2);return 1;/最小二乘法求線形方程void minlength_line(double xy2,int m,double *a,double *b)double a1,b1,c1,a2,b2,c2,d;b1=c1=a2=b2=c2=0.0;for(int i=0; im;
21、i+) b1+=xyi0; c1+=xyi1;b2+=xyi0*xyi0; c2+=xyi0*xyi1; a1=m; a2=b1;d=a1*b2-a2*b1;*a=(c1*b2-c2*b1)/d;*b=-(c1*a2-c2*a1)/d;int main(int argc, char* argv)printf(%dn,find_type(2400,3.8);double xx6=0.4,0.5,0.6,0.7,0.8,0.9;double yy6=0.38942, 0.47943, 0.56464, 0.64422, 0.71736, 0.80341;double x=0.57891,y;fin
22、d_liner(xx,yy,6,x,&y); printf(%lfn,y);find_quadric(xx,yy,6,x,&y); printf(%lfn,y);/最小二乘法求線形方程double xy2=1,0,2,2,3,2,4,5,5,4;double a,b;minlength_line(xy,5,&a,&b);printf(a=%lfnb=%lfn,a,b);return 0; 實(shí)驗(yàn)五 三角帶傳動的程序設(shè)計1、已知條件傳動用途和工作條件,傳動功率p, 主、從帶輪的轉(zhuǎn)速n1,n22設(shè)計時需要確定的內(nèi)容三角帶型號、長度和根數(shù),帶輪直徑,傳動中心距,帶的張緊力和軸上載荷,同時還要驗(yàn)算帶的速
23、度和小帶輪上的包角。三角帶傳動設(shè)計的源程序#include #include #include #define pi 3.1415926int find_type(double n,double p)double a64=4900,3.8,490,0.8, 3400,10.5,100,1, 2400,22.5,100,2.7, 1500,36,100,5.9, 1200,85,100,17.5, 700,170,100,44;int i;double c;for(i=0; i=ai0) return i+1; c=log10(ai2)+(log10(ai0)-log10(ai2)* (log1
24、0(p)-log10(ai3)/(log10(ai1)-log10(ai3); if(n=pow(10.0,c) return i+1;return 0;void find_s_kb(int type,double *s,double *q1,double *dmin,double *dl,double *kb)double a57=47,81,138,230,476,692,1170, 0.06,0.1,0.17,0.3,0.62,0.9,1.52, 71,100,140,200,315,500,800, 25,33,40,59,76,96,119, 0.29,0.77,1.99,5.63,
25、19.95,37.35,96.10;*s=a0type-1;*q1=a1type-1;*dmin=a2type-1;*dl=a3type-1;*kb=0.001*a4type-1;double find_d2(double d2)double a53=71,75,80,90,95,100,106,112,118,125,132,140,150,160,170,180,200,212, 224,236,250,265,280,300,315,355,375,400,425,450,475,500,530,560,600,630,670, 710,750,800,900,1000,1060,112
26、0,1250,1400,1500,1600,1800,1900,2000,2240,2500;int i;for(i=0; i=d2) return ai; return 0;.void find_lp_li(double l0,double dl,double *lp,double *li)double a32=450,500,560,630,710,800,900,1000,1120,1250,1400,1600,1800, 2000,2240,2500,2800,3150,3550,4000,4500,5000,5600,6300,7100, 8000,9000,10000,11200,
27、12500,14000,16000;int i;for(i=0; i=l0) *li=ai; *lp=*li+dl; return;double aa2731=/*o*/63,0.13,0.23,0.31,0.39,0.47,0.54,0.60,0.67,0.72,0.78,0.82,0.85,0.90,0.93,0.96,0.99,1.01,1.02,1.02,1.03,1.04,1.02,1.00,0.96,0.94,0,0,0,0,0,71,0.14,0.25,0.35,0.44,0.53,0.62,0.69,0.77,0.84,0.91,0.97,1.01,1.06,1.12,1.16
28、,1.20,1.23,1.26,1.27,1.29,1.31,1.30,1.30,1.27,1.26,0,0,0,0,0,80,0.15,0.28,0.39,0.49,0.59,0.69,0.78,0.87,0.95,1.03,1.10,1.15,1.22,1.28,1.34,1.39,1.43,1.47,1.49,1.53,1.56,1.57,1.57,1.56,1.56,0,0,0,0,0,90,0.16,0.30,0.42,0.53,0.64,0.75,0.85,0.95,1.04,1.13,1.21,1.27,1.35,1.42,1.49,1.55,1.60,1.65,1.68,1.7
29、3,1.77,1.79,1.80,1.80,1.81,0,0,0,0,0,/*a*/90,0.23,0.41,0.56,0.71,0.84,0.97,1.08,1.19,1.30,1.39,1.48,1.56,1.63,1.69,1.74,1.79,1.83,1.86,1.87,1.88,1.87,1.86,1.84,1.80,1.75,1.69,1.62,1.53,1.42,1.30,100,0.25,0.45,0.62,0.80,0.95,1.10,1.23,1.37,1.49,1.61,1.72,1.82,1.91,1.99,2.07,2.14,2.20,2.25,2.28,2.32,2
30、.33,2.34,2.34,2.32,2.29,2.25,2.20,2.14,2.05,1.96,112,0.27,0.49,0.69,0.88,1.06,1.22,1.38,1.53,1.68,1.82,1.95,2.07,2.18,2.29,2.39,2.48,2.56,2.63,2.68,2.74,2.77,2.80,2.82,2.83,2.82,2.80,2.77,2.72,2.66,2.58,125,0.29,0.53,0.75,0.95,1.15,1.33,1.51,1.68,1.85,2.00,2.15,2.29,2.42,2.54,2.66,2.76,2.86,2.95,3.0
31、3,3.10,3.16,3.20,3.23,3.26,3.27,3.28,3.26,3.23,3.18,3.13,/*b*/125,0.38,0.68,0.94,1.18,1.36,1.60,1.79,1.96,2.13,2.26,2.42,2.54,2.65,2.74,2.82,2.88,2.94,2.98,2.99,2.99,2.96,2.93,2.87,2.79,2.70,2.58,2.43,2.27,2.06,1.86,140,0.43,0.77,1.07,1.35,1.58,1.86,2.09,2.31,2.52,2.71,2.89,3.06,3.21,3.35,3.48,3.58,
32、3.67,3.75,3.81,3.86,3.88,3.88,3.87,3.83,3.78,3.70,3.61,3.49,3.32,3.16,160,0.47,0.86,1.21,1.53,1.80,2.13,2.41,2.67,2.93,3.16,3.39,3.60,3.80,3.98,4.15,4.30,4.44,4.56,4.67,4.76,4.83,4.88,4.91,4.92,4.91,4.87,4.82,4.75,4.63,4.52,180,0.51,0.93,1.31,1.67,1.98,2.34,2.65,2.95,3.24,3.52,3.78,4.03,4.26,4.47,4.
33、68,4.86,5.04,5.20,5.33,5.46,5.56,5.65,5.71,5.76,5.79,5.79,5.77,5.74,5.65,5.57,/*c*/200,0,1.34,1.86,2.34,2.78,3.20,3.59,3.95,4.30,4.62,4.91,5.19,5.43,5.65,5.84,6.00,6.14,6.26,6.33,6.39, 6.38,6.36,6.31,6.22,6.09,5.94,5.73,5.48,5.16,4.84,224,0,1.50,2.09,2.65,3.17,3.66,4.13,4.57,5.00,5.39,5.76,6.11,6.43
34、,6.72,6.99,7.24,7.45,7.64,7.79,7.93, 8.01,8.07,8.09,8.06,8.02,7.94,7.81,7.64,7.40,7.15,250,0,1.63,2.29,2.91,3.50,4.06,4.59,5.10,5.60,6.05,6.49,6.90,7.29,7.65,7.98,8.30,8.58,8.83,9.05,9.25, 9.40,9.52,9.61,9.66,9.68,9.66,9.60,9.49,9.31,9.13,280,0,1.75,2.49,3.16,3.80,4.43,5.02,5.60,6.15,6.67,7.16,7.65,
35、8.09,8.51,8.90,9.27,9.61,9.94,10.22,10.48,10.68,10.87,11.01,11.11,11.20,11.27,11.27,11.20,11.10,10.98,/*d*/315,0,2.70,3.73,4.66,5.53,6.34,7.08, 7.79, 8.46, 9.06, 9.61, 10.12,10.57,10.97,11.30,11.60,11.82,12.00,12.10,12.19,12.11,12.02,11.87,11.61,11.32,10.93,10.47,9.90, 9.19,8.32,355,0,3.07,4.27,5.40
36、,6.44,7.43,8.36, 9.25, 10.10,10.68,11.61,12.31,12.93,13.51,14.03,14.50,14.91,15.28,15.55,15.80,15.92,16.03,16.06,15.95,15.85,15.67,15.36,14.99,14.47,13.79,400,0,3.39,4.74,6.03,7.24,8.39,9.49, 10.52,11.55,12.49,13.39,14.24,15.02,15.76,16.45,17.08,17.65,18.19,18.60,19.02,19.28,19.55,19.73,19.83,19.88,
37、19.82,19.70,19.49,19.13,18.62,450,0,3.67,5.18,6.61,7.95,9.24,10.48,11.72,12.81,13.89,14.91,15.92,16.87,17.73,18.57,19.32,20.04,20.72,21.28,21.83,22.25,22.66,22.97,23.20,23.40,23.48,23.52,23.40,23.19,22.82,/*e*/500,0,0,0,0,10.18,11.78,13.31,14.76,16.17,17.44,18.69,19.84,20.92,21.92,22.82,23.66,24.42,
38、25.11,25.62,26.18,26.48,26.78,26.98,27.02,26.98,26.82,26.53,26.10,25.50,24.83,560,0,0,0,0,11.20,13.01,14.73,16.39,17.98,19.49,20.92,22.28,23.58,24.77,25.88,26.94,27.85,28.76,29.51,30.23,30.78,31.28,31.64,31.90,32.06,32.17,32.04,31.82,31.41,30.98,630,0,0,0,0,12.40,14.13,16.03,17.89,19.69,21.40,23.00,
39、24.57,26.02,27.41,28.73,29.97,31.10,32.17,33.12,34.02,34.74,35.42,36.00,36.44,36.80,37.03,37.16,37.13,36.86,36.62,710,0,0,0,0,12.99,15.15,17.25,19.24,21.23,23.05,24.86,26.60,28.22,29.78,31.24,32.63,33.97,35.24,36.37,37.42,38.32,39.18,39.90,40.50,41.08,41.50,41.75,41.85,41.85,41.70,/*f*/800,0,0,0,0,1
40、3.9,16.1,18.2,20.2,22.1,24.1,25.8,27.4,28.9,30.3,31.8,33.0,34.1,35.2,36.1,36.9,37.6,38.1,38.5,38.7,38.8,38.6,38.3,37.8,37.2,36.3,900,0,0,0,0,15.1,17.6,20.0,22.3,24.4,26.6,28.6,30.4,32.3,33.9,35.6,37.1,38.4,39.8,40.9,42.0,43.0,43.7,44.3,44.8,45.0,45.2,45.2,45.0,44.7,44.3,1000,0,0,0,0,16.2,18.8,21.4,2
41、3.9,26.2,28.6,30.8,32.8,34.9,36.6,38.7,40.4,41.9,43.5,44.8,46.0,47.2,48.2,49.0,49.7,50.2,50.5,50.8,50.8,50.7,50.4;double find_p0(double d1,double v,int type)int n1,n2,i,n;n1=4*(type-1); n2=n1+3;if(n2=27) n2=26;n=n2;for(i=n1; i=d1) n=i; break;return aan(int)(v+0.5);double find_ka(int k1,int k2,int h)
42、double a423=1.0,1.1,1.2,1.1,1.2,1.3, 1.1,1.2,1.3,1.2,1.3,1.4, 1.2,1.3,1.4,1.4,1.5,1.6, 1.3,1.4,1.5,1.5,1.6,1.8;int k3;if(h16) k3=3;else k3=2; return ak2-1k1-1k3-1; double find_ki(double ii)if(ii=1.04) return 1.0;if(ii=1.19) return 1.03;if(ii=1.49) return 1.08;if(ii=2.95) return 1.12;return 1.14;doub
43、le find_kf(double af)double a102=180,1.0,170,0.98,160,0.95,150,0.92,140,0.89, 130,0.86,120,0.82,110,0.78,100,0.74,90,0.69;int i,n;for(i=1; i10; i+) if(af=ai0) n=i; break;return an-11+(af-an-10)*(an1-an-11)/(an0-an-10);double find_kl(int type,double li)double a328=450,0.89,0,0,0,0,0,0,500,0.91,0,0,0,
44、0,0,0,560,0.94,0.8,0,0,0,0,0,630,0.96,0.81,0,78,0,0,0,710,0.99,0.82,0.79,0,0,0,0,800,1.00,0.85,0.80,0,0,0,0,900,1.03,0.87,0.81,0,0,0,0,1000,1.06,0.89,0.84,0,0,0,0,1120,1.08,0.91,0.86,0,0,0,0,1250,1.11,0.93,0.88,0.80,0,0,0,1400,1.14,0.96,0.90,0.81,0,0,0,1600,1.16,0.99,0.93,0.84,0,0,0,1800,1.18,1.01,0
45、.95,0.85,0,0,0,2000,1.20,1.03,0.98,0.88,0,0,0,2240,0,1.06,1.00,0.91,0,0,0,2500,0,1.09,1.03,0.93,0,0,0,2800,0,1.11,1.05,0.95,0,0,0,3150,0,1.13,1.07,0.97,0.86,0,0,3550,0,1.17,1.10,0.98,0.89,0,0,4000,0,1.19,1.13,1.02,0.91,0,0,4500,0,0,1.15,1.04,0.93,0.90,0,5000,0,0,1.18,1.07,0.96,0.92,0,5600,0,0,1.20,1.09,0.98,0.95,0,6300,0,0,0,1.12,1.00,
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024專利知識產(chǎn)權(quán)合同
- 2024五星級酒店食品供應(yīng)與采購勞務(wù)合同
- 2024外架搭設(shè)合同
- 2024軟件項(xiàng)目委托開發(fā)合同
- 2024年度旅游景點(diǎn)開發(fā)合作協(xié)議
- 2024年度安置房買賣合同中的違約責(zé)任
- 2024年度新能源項(xiàng)目開發(fā)建設(shè)合同
- 文書模板-充電樁股份轉(zhuǎn)讓合同
- 2024年度貨物買賣合同商品描述與支付方式詳解
- 2024年幼兒園教育聯(lián)盟協(xié)議
- 國開電大 可編程控制器應(yīng)用實(shí)訓(xùn) 形考任務(wù)6實(shí)訓(xùn)報告
- GB/T 34120-2023電化學(xué)儲能系統(tǒng)儲能變流器技術(shù)要求
- 跨國企業(yè)中方外派人員的跨文化適應(yīng)
- 《道路交叉設(shè)計》課件
- 《活著》讀后感-課件
- 體檢報告匯總分析中風(fēng)險的防范
- 村里建群管理制度
- 【城市軌道交通運(yùn)營安全管理研究5300字】
- 2024年中核匯能有限公司招聘筆試參考題庫含答案解析
- 上海市2024屆高三7月模擬預(yù)測歷史試題(等級考)(解析版)
- 肺炎護(hù)理查房課件
評論
0/150
提交評論