版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
)式中為占空比。改變ρ,即可改變其平均電壓。2.3.5無刷直流電動機及控制器的保護如圖2-12所示:圖2-12保護電路一、電機過流和過熱保護電機過流保護和過熱保護(電機的過載保護和小電流過載保護也可以通過過熱保護來實現(xiàn)),由單片機循環(huán)檢測電機電流樣值信號和電機過熱信號,檢測到任何一種信號,單片機將進入保護方式,令單片機輸出的PWM信號變?yōu)榱忝}寬,使電機失電,同時借助于自行車本身的制動系統(tǒng),使自行車停止前進。如圖所示,此兩種信號由P0.0和P0.1提供。二、蓄電池欠壓保護系統(tǒng)軟件設計時,當出現(xiàn)欠壓信號時,并不是馬上就切斷主回路,而是在一定時間內連續(xù)檢測欠壓信號,如果欠壓信號保持兩秒鐘,系統(tǒng)將進入欠壓保護報警程序,如果欠壓信號持續(xù)不到兩秒鐘,系統(tǒng)就不進入保護報警程序,繼續(xù)正常工作。如圖所示,此種信號從單片機的P0.2口輸入。三、剎車控制剎車控制也采用實時響應方式,當系統(tǒng)檢測到剎車信號后,立即使單片機輸出的PWM信號變?yōu)榱忝}寬,使電子開關斷開,電機失電。同時借助于自行車本身的制動系統(tǒng),使自行車停止前進。這時單片機系統(tǒng)應處于等待狀態(tài),剎車信號消失后,系統(tǒng)恢復工作,此時PWM信號為零脈寬,騎車人需進行加速才能繼續(xù)前進。這樣做的好處是,可以防止自行車在剎車信號消失后急速前沖,給騎車人帶來不安全因素。如圖所示,此信號從單片機的P0.3口輸入。四、報警指示報警指示電路由四個發(fā)光二極管和一個蜂鳴器構成,由單片機的P0.4-P0.7口和P3.3口控制,四個發(fā)光二極管分別表示電動機過熱、過流、蓄電池欠壓和剎車,當電動機過熱、過流或蓄電池欠壓時,相應的發(fā)光二極管就被點亮,同時發(fā)出報警聲提醒騎車人,而當剎車信號出現(xiàn)時,相應的二極管點亮,但不發(fā)出報警聲。為了方便單片機控制,發(fā)光二極管正極接+5V電源,負極通過限流電阻與單片機相連,驅動蜂鳴器的三極管采用9015,其電路如圖2-12。第三章系統(tǒng)軟件設計基于AT89C51單片機的需要,本設計用匯編語言進行編程。由于給直流電動機調速用的PWM信號由外電路產(chǎn)生,大大減小了程序的復雜程度,其程序流程如圖3-1。圖3-1程序主流程圖在本系統(tǒng)控制中,欠壓保護采用多點檢測,當出現(xiàn)欠壓信號時,并不是馬上就切斷主回路,而是在一定時間內連續(xù)檢測欠壓信號,如果欠壓信號保持兩秒鐘,系統(tǒng)將進入欠壓保護報警程序,如果欠壓信號持續(xù)不到兩秒鐘,系統(tǒng)就不進入保護報警程序,繼續(xù)正常工作。過流、過熱保護都采用實時響應,一旦檢測到過流或過熱保護,系統(tǒng)就立即進入保護報警程序。在上述保護方案中,電流保護和蓄電池欠壓保護采用非恢復性保護,一旦進入保護狀態(tài),就必須等排除故障、重新啟動單片機系統(tǒng)后,才能恢復工作。而過熱保護采用可恢復性保護,在軟件保護過程中,若電動機溫度下降到保護值以下時,應撤消保護,系統(tǒng)恢復正常工作狀態(tài)。加速、減速控制也采用實時響應,一旦檢測到加速或減速信號,單片機就相應改變X的值,以達到加速或減速的效果。另外,為了便于騎車人調速,系統(tǒng)的加速或減速的幅度和騎車人按加速或減速按鈕的時間成正比,按得越長,改變的速度值就越大,只要按著加速或減速按鈕,系統(tǒng)就一直執(zhí)行加速或減速程序,直到速度達到最大值或零。剎車控制也采用實時響應,一檢測到剎車信號,剎車燈亮,并將速度調到零。因為目前我國在電動自行車中采用的無刷直流電動機都是低轉速的,一般為200轉/分,并與車輪整合在一起,不經(jīng)過變速,無刷直流電動機轉子的轉速就是車輪的轉速,而采用12M晶振的單片機系統(tǒng)定時器的最長定時只有60多毫秒,在這么短的時間里,車輪不可能轉一周,因此測速只能采用周期法,即多次中斷定時,每次中斷設為15毫秒,測出車輪轉一周所需的中斷次數(shù),就可以得到車輪每轉一周所需的時間,從而算出車子的行進速度,在本程序中暫時將車輪的周長定為1米,中斷程序流程圖見圖3-2。圖3-2中斷程序流程圖第四章結束語電動自行車控制器的性能在很大程度上決定了電動自行車的整車性能。通過單片機AT89C51將各硬件部分有機地組合起來,使系統(tǒng)能及時、有效地檢測到各種控制信號并將轉換后的信號反饋給各控制部件,實現(xiàn)了軟硬件的完美組合。此控制器具有節(jié)能、工作可靠等特點,基本符合了人們對電動自行車控制器的要求。經(jīng)過這次畢業(yè)設計,我覺得自己學到了不少東西。學會了更好地查閱資料和利用工具書。當在設計過程中需要用一些不曾學過的東西時,就要去有針對性地查找資料,然后加以吸收利用,以提高自己的應用能力,而且還能增長自己見識,補充最新的專業(yè)知識,并且加強了PROTEL軟件的應用設計,最主要的是,使我對編程有了一定的提高,我是最怕編程的,因為在以前學習中,編程就是我最大的弱點,所以真的很感謝這次畢業(yè)設計。同時在這里,我要感謝我的導師石炳存老師和畢業(yè)設計過程中所有給我真誠幫助的老師和同學。參考文獻:[1]沈卓群,劉電霆,蔣存波。電動自行車智能控制器研制[J],桂林工學院學報。2002,4(22):406~408。[2]張毅坤,陳善久,裘雪紅。單片微型計算機原理及應用[M],西安電子科技大學出版社。1998年9月。[3]邵富春。怎樣保護電動機[M],中國農(nóng)業(yè)機械出版社。1984年6月.[4]葉金虎,徐思海,張頡明,崔海大,施民生。無刷直流電動機[M],科學出版社。1982年1月[5]邱丹,王東,高振東。直流電機PWM閉環(huán)調速系統(tǒng)[J],青島大學學報。2000,1(15):10~12.[6]韓志榮,黃鄉(xiāng)生,李躍忠。AT89C51單片機在直流電機閉環(huán)調速系統(tǒng)中的應用[J],華東地質學院學報.2002,1(15):70~74。[7]楊素行。模擬電子技術基礎簡明教程[M],高等教育出版社.1998年10月.[8]盧靜,陳非凡,張高飛,施涌潮.基于單片機的無刷直流電動機控制系統(tǒng)設計[J],北京機械工業(yè)學院學報。2002,4(17):44~49.[9]王曉明,電動機的單片機控制,北京航空航天大學出版社.2002[10]馬家辰,孫玉德,張穎。MCS-51單片機原理及接口技術。[11]吳金戌。8051單片機實踐與應用[M],清華大學出版社。ComputerAidedDesignGoodengineeringdesignisnecessarytoguaranteetatapartormechanismfunctionscorrectlyandlastsforareasonablylongtime.Functionalconsiderationsduringdesigninvolve,amongotherthings,weight,strength,thermalproperties,kinematics,anddynamics.Theperformanceofadesigncanbeevaluatedbycomparingitsperformancemeasurementswiththerequiredspecifications.Asimportantassatisfactoryperformanceis,thereareotherareaspartshouldbedesignedeconomically.Thisimpliesthatthefinishedpartshouldbedesignedasclosetothespecificationsaspossible.Ifthefunctionofasupportingmemberofastructurerequiresthemembertowithstand10,000psiofcompressivestress,thendesigningthemembertowithstand30,000psiisunnecessaryandwillprobablybemoreexpensivethantherequireddesign.Engineeringdesign,thereforeshouldaddressfunctionalityandeconomics,Functionalityisdeterminedbyapart’sgeometry,materialproperties,andenvironment.Theeconomicfactorsincludematerials,processingcosts,andmarketingdetails.Asmuchas70%oftheproductioncostsofamanufacturedpartaredeterminedduringtheengineeringdesignprocess.Thismeansthatbythetimetheparthasleftthedesigner’shandsthelargemajorityofitsproductioncostshavebeenestablished.Theyaredefinedimplicitlybythematerials,dimensions,tolerances,surfacefinishes,andotherparameterswhichdetermineprocessingcosts.Therefore,only30%ofthepart’scostissubjecttomoney-savingeffortsduringthemanufacturingplanningstage.This70/30ratioemphasizestheimportantofthedesigncanbeamajorhelpinassuringproperfunctionandreasonableproductioncosts.Computer-aideddesign(CAD)isatermwhichmeansmanythingstomanypeople.Tosome,itmeanscomputer-aideddraftingordrawing.Toothers,itmeanscompute-aidedanalysis.Andtostillothers,itsuggeststotallyautomateddesignwheretheengineerneedspecifyonlythefunctionofapartandthecomputerarrivesatasatisfactoryorevenoptimaldesign.CADisalloftheabove,aimingmostlyforthefastdescriptionthroughtechniquesinartificialintelligence.CAD,however,stillexistsseparatelyineachofthestagesmentioned.ProbablythemostcommonandsimplestCADsystemsarelimitedtoautomateddraftingcapabilities.Moreadvancedsystemscanperformanalysesandevenhelpguidetheengineertotheequationsnecessarytodeterminetheeffectivenessofthedesign.BecauseoftheavailabilityofawidevarietyofCADsystemswithdifferentcharacteristicssuppliedbydifferentvendors,propercommunicationandexchangeofdatabetweenthesesystemshavebecomeasignificantproblem.TheneedforasingleneutralformatforbettercompatibilityispresentlyfilledlargelybytheInitialGraphicsExchangeSpecificaton(IGES).Vendorsneedonlyprovidetranslatorsfortheirownsystemstopreprocessthedataintotheneutralformatintotheirsystem.IGESisusedfortranslationintwodirections(intooroutofasystem)andisalsousedwidelyfortranslationof3-Dlineandsurfacedata.Amorerecentdevelopmentisasolid-model-basedstandardcalledProductDataExchangeSpecification(PDES),whichisbasedonIGES.AlthoughIGESisadequatefromostrequirement,PDEShaslessmemorysize,requireslesstimeforexecution,andislesserrorprone.Becauseoftheexistenceofvariousstandardsinothercountriesaswell,itisexpectedthatinthenearfuturethesestandardswillculminateinaninternationalstandard,calledtheStandardfortheExchangeofProductModelData(STEP).HardwareandSoftwareHardwarevariesagreatdealbetweenCADsystems.MainframeshavelongbeenusedforCADsystems.TherapidincreasesinprocessingspeedshavemademicroandminicomputersviableCADstations.Networksgenerallyareusedsothatdesignscanbestoredcentrallyanddatacanbesharedamongdesigners.Manyinputdevicesareused.CommonI/Odevicesincludekeyboard,mouse,trackball,digitizingpad,joystick,keypad,andlightpens.Outputdevicesaretypicallyscreen,plotter,printer,andharddrivesanddisksforstorage.ThereisawidevarietyofCADsoftwareavailableformainframesengineeringstationsandmicrocomputers.Thepackagesvarytosomedegreeininformationintheformofdrawingexchangefiles.Thesefilescanbeimportedintoothersoftwaretoassistinprogrammingthemachinetool.ElementsofCADSystemsThedesignprocessinaCADsystemconsistsoffourstages,asdescribedbelow.Geometricmodeling.Ingeometricmodeling,aphysicalobjectoranyofitspartsisdescribedmathematicallyoranalytically.Thedesignerfirstconstructsageometricmodelbygivingcommandsthatcreateormodifylines,surfaces,solids,dimensions,andtextthattogetherareandaccurateandcompletetwo-orthree-dimensionalrepresentationoftheobject.Themodelscanbepresentedinthreedifferentways.Inthelinerepresentation(wire-frame;Figure10.ld),alledgesarevisibleassolidlines.Thisimagecanbeambiguous,particularlyforcomplexshapes.However,variouscolorsaregenerallyusedfordifferentpartoftheobject,thusmakingtheobjecteasiervisualize.Inthesurfacemodel,allvisiblesurfaceareshowninthemodel,andinthesolidmodel,allsurfacesareshown,butthedatadescribetheinteriorvolume(Figure10.1e,f)Designanalysisandoptimization.Afterthedesign’sgeometricfeatureshavemayconsistofanalyzingstresses,strains,deflection,vibrations.Thisphasetemperaturedistribution,ortolerance.Varioussophisticatedsoftwarepackagescapableofcomputingthesequantitiesaccuratelyandrapidlyareavailable.Designreviewandevaluation.Animportantdesignstageisreviewandevaluationtocheckforanyinterferencebetweenvariouscomponentsinordertoavoiddifficultiesduringassemblyoruseofthepart,andwhethermovingmembers,suchaslinkages,aregoingtooperateasintended.Softwareisnowavailablewithanimationcapabilitiestoidentifypotentialwithmovingmembersandotherdynamicsituations.Duringthedesignreviewandevaluationstage,thepartispreciselydimensionedandtolerance,asrequiredformanufacturingit.Documentationanddrafting.Aftertheprecedingstageshavebeencompleted,thedesignisreproducedbyautomateddraftingmachinesfordocumentationandreference.Detailandworkingdrawingsarealsodevelopedandprinted.TheCADsystemiscapableofdevelopingdraftingsectionalviewsofthepart,scalingthedrawings,andperformingtransformationtopresentvariousviewofthepart.InCADsystems,muchofthedesignprocesswasformerlycarriedoutonworkstationconnectedtoamainframecomputer,butthetrendhaschangedrapidlytopowerful,high-performance,andmuchlessexpensivestand-alonedesktop32-bitUnixworkstation;64-bitprocessorswithevenbetterperformancearealsobecomingavailable.TheDesignProcessBeforedelvingintoCAD,itisimportanttounderstandthedesignprocessitself.Computertechniquesarenomorevaluablethanthetheoryonwhichtheyarebased.Afterashortdiscussionofdesigningeneral,wewillexplorehowthecomputercanhelpwitheachofthedesignstages.Shigleydefinesthedesignprocessasaniterativeprocedureconsistingofsixphase:RecognitionofneedDefinitionofproblemSynthesisAnalysisandoptimizationEvaluationPresentationThefirststep,recognitionofneed,arisesfromanidentifiedproblem.Suppose,forexample,thatanew,moreefficientjetengineisrequiredbecauseofafuelshortage.Step2,definitionoftheproblemismorespecific.Definingthespecificsofthejetengineinvolvesknowingthethrust,horsepower,allowableweight,etc.Someofthesespecificationsareconstraints;I.e.,theyarerequirementsthatmustbemetforthedesigntobefeasible.Thejetengineweightlimitmaybeoneconstraintontheavailableliftoftheplanewings.Amaximumweight,then,wouldbeaconstraint.Constraintsareusuallyexpressedasamaximumorminimumvalueorrageofvalues.Otherspecification,however,aretermedcriteria,i.e.,measuresofthegoodnessorqualityofthedesign.Criteriaareusedtomeasureadesignandcomparedesignsagainstoneanother,asoccursduringtheoptimizationstage.Onecriterionofthejetenginemaybegallonsoffuelburnedperhourorpermileoftravel.Criteriahavenomaximumorminimumlimitsonvalues.Asatisfactorydesignisoneinwhichalltheconstraintsaremet.Thisbestdesign,Iadditiontomeetingtheconstraints,willhavethebestcombinationofcriteriavalues.Selectionofconstraintsandcriteriaisanintegralpartofstep2,definitionoftheproblem.Followingdefinitionoftheproblem,thenextthreesteps(synthesis,analysis/optimization,andevaluation)areiterative.Synthesisandanalysisareperformedinconjunctionwithoneanother.Severaltypesofproblemscanariseduringthedesignprocess.Synthesisrequiresdeterminingtheotakestheformofengineeringdrawingsincludinggeometry,tolerances,materialtypes,andcomponentparnumbers.Analysismayrangefromasimpleestheticevaluationtothesolutionofasetofcomplexdifferentialequationswhichdescribetheperformanceofthepartorassembly.Theresultsofanalysescanbeexpressedintabularorgraphicalform.Itisthejobofthedesignertoevaluatetheanalysisdataandtoperformanyredesign.Evaluationsalsoatypeofanalysis,butusuallyrequiresanexpensiveprototypeandracksofinstrumentation.Thedesignprocesscanbeverycostlyandinvolvemanypeople.Designcostmaybelowed,however,byreducingthenumberofpeopleandtheprototypingprocessitself.AnalysisTheanalysisisthecornerstoneofCAD.Theresultsgeneratedbyanalysismodulesareusedbytheengineertodeterminethefeasibilityofadesignortooptimizeorredesigntheobject.Fundamentaltoanalysisisdevelopedtoaccuratelypredicttheperformancebasedonthedesignvariablevalues.Typically,sophisticatedanalysisprogramsaretheperformancemodelsofthedesign.Theuserdoesnotneedtoformulateequationswhichdescribetheperformanceorfunctionality.Whattheusermustdoinsteadistomodeltheobjectgeometryinanappropriateformat.Usuallytieengineerwhoisdesigningacommonlyanalyzedpartorassemblycanpurchaseanalysissoftwaretoevaluatethedesign.Itisonlyinthecaseofanunusualdesignorperformancerequirement,whereoff-the-shelfsoftwareisnotavailable,thattheengineermustformulateauniquemodel.Inthiscase,theengineerwillusuallyderiveamathematicalmodelintheformofequationsusinghelawsofphysicsandwriteaprogramtoreadthedesigndescriptionandcalculateteperformanceparameters.Thesecommonlyavailableanalysismodulesreadthedesigndescriptionandgenerateperformanceresultintheformofnumbers,graphs,charts,etc.AnExampleofUsingCADCAD,normallyusedinengineeringdepartments,hasdrasticallychangedthesedepartments.Drawingusedtobemadeonpaperwithpencilorpenanddrawinginstruments.Theywerethencopied,andthecopiesweresenttothefloorforproduction.Theoriginalswerestoredinlargedrawers.Evenasmallenterprisecouldhavethousandsoflargeblueprintsonfile.Ifchangeswerenecessary,theengineerwouldgettheoriginaloutofthefiledrawer,maketheneedforallofthephysicalstorageofprints.Thecomputeralsoallowedforrapidandeasyprintmodifications.Theengineerordesignerfirstdrawsthepartonthescreenthispartdrawingistheactualpartgeometry.Thesizesandlocationareallcorrectsothattheinformationcanbeusedlatertocreateaprogramtomachinethepart.Theengineerordesignerfirstdrawsthepartonthescreen.Thispartdrawingistheactualpartgeometry.Thesizesandlocationsareallcorrectsothattheinformationcanbeusedlatertocreateaprogramtomachinethepart.Thedesignermustworkcloselywiththemanufacturingpeopletoestablishsomestandardsfordesign.CADallowsdifferentlayers(orlevels)tobecreated.Thisallowsthedesignertoputdifferentpotionsofthepartgeometryondifferentlayers.Forexample,imagineasimplepartthathasa1/2-inchslotmilledinitandfourholesdrilledthroughit.Thedesignerwouldputtheslotononelayerofthedrawingandtheholesonanotherlayer.Thiswillallowothersoftwaretotakethepartgeometryformeachlayerandassigndifferenttoolstoit.Thinkofdifferentlayersasdifferentmachiningoperationthatwouldhavedifferenttoolassignedtothem.Layersareliketransparency.Ifweputallofthetotaltransparenciesontopofeachother,weseethetotalpart.Butwecanstilltakeanyonetransparencyandisolatesomeofthepartgeometry.TheCADsystemwillprinttheblueprintsoitappearsthereisonlyonelayer,orindividuallayerscanbeprinted.Thedesigneralsodimensionsthepart.Thisisquiteautomatic.Thedesignerchooseswherehe/shewantsdimensionsplacedandthecomputerplacestheactualdimensions.Dimensionswouldbeonadifferentlayerthanpartgeometry.Thecomputerallowsdesignstobeviewedandtestedbeforetheactualpartisevenmanufactured.Thepartcanbetestedmakesureitfitswithanymatingpars.CADsystemcancheckforinterferenceofparts,whichcansavealotofwastedmachininganddevelopmenttime.CADsystemscanstress-testparttoseeiftheywillmeetthestrengthrequirementsoftheapplication.ThegraphicsabilitiesofCADsystemalsoallow3-Dviewingofpartfromanyangle.IntegratedCADTheemphasisofthechapterisintegratedCAD/CAM.Theintegrationaspectisaccomplishedwhenthedesignandanalysismodulesareunitedintoonepackage.Thedesigngeometryenteredbythedesignercanbeusedbytheanalysisprogramsandbythemanufacturing,inspection,inventory,andotheraspectsoftheproductliftcycle.Themanifestationofintegratingsoftwareisrecognizedwhentheusercansitdownatacomputerterminal,designapart,viewitonthescreen,analyzeitfordesignrequirements,andhittheproverbialmanufacturingbuttonthekeyboardtohavethepartautomaticallymanufactured,inspected,anddelivered.Variousstagesofintegrationdoexist,butnoneisascompleteastheexamplejustmentioned.Integrationimpliesautomation.AutomationimpliesthatthehardwareandsoftwarecancreateaCADdatabaseanduseittoanalyzeandmanufacturetheparttotallyautomatically,withlittleornohumanintervention.Thequestionastowhetherhumaninterventionisadvisableisstillopen.Certainlyhumanintelligenceisvaluableindevelopingadesigningeometryandfunctionality,recognizingcertainpatternsandshortcomingsofproducts,andformulatingmanufacturingplans.Ithasbeensuggestedthatartificialintelligence(AI)techniquescansubstituteformuchofthehumandesign/manufacturinginput.AIresearchhashadsuccessintheareasofpatternrecognition,planning,naturallanguageunderstanding,roboticcontrol,faultdiagnosis,andotherapplications.ThemostwellrecognizeareaofAIisthedevelopmentofexpertsystem.Expertsystemssimulatehumanexpertisebystoringaknowledgebaseofdataaboutaspecificdomain.ThearchitectureofanexpertsystemisshowninFigure10.2.Theknowledgebasecontainsknowledgeaboutaspecificproblemdomainandfactsstatingtheproblem.Theinferenceengineistheprogramcontrolwhichsearchestefactsabouttheproblemtosatisfytheknowledgebaseadabovetheproblem計算機輔助設計一個好的機械設計產(chǎn)品必須保證產(chǎn)品的部分或全部功能在產(chǎn)品壽命中能夠正確有效地實現(xiàn)。在設計中產(chǎn)品功能的研究包括:重力、強度、熱、溫度特性、運動學和動力學。評價設計的好壞與否可以通過比較產(chǎn)品的實際性能與設計要求的差距來衡量。設計除了功能達到設計要求之外,其它方面的實際同樣也十分重要。比如說經(jīng)濟性方面的要求。這就是說最終的產(chǎn)品要近可能地接近設計要求。如果要求支撐設計能承受1000N/min的能力,然而設計成能承受2000N/min,則沒有必要也不經(jīng)濟。因此機械設計必須處理好產(chǎn)品的功能與其經(jīng)濟性之間的矛盾。產(chǎn)品的性能受零部件的結構、材料屬性和人機環(huán)境的影響;產(chǎn)品的經(jīng)濟性則和材料的成本以及市場因素有關。在機械設計過程中70%的制造成本已經(jīng)決定了。這就是說設計者把產(chǎn)品交給制造之前,絕大部分主要的成本已經(jīng)決定。比如:材料尺寸、公差、表賣弄粗糙度及過程成本的其它參數(shù)。因此,在加工過程中,我們在制造過程中再努力也只能減少%30的花費。這個比例說明設計過程起著置關重要的作用。我們應該清楚計算機能夠幫上很大的忙。計算機輔助設計對不同的人意味著不同的意思。對一些人來說,它意味著計算機輔助繪圖和草繪,對另外一些人來說,他則意味著完全自動化設計,設計者只要規(guī)定設計的功能,則計算機能設計出滿足要求的產(chǎn)品,甚至經(jīng)過優(yōu)化的設計。以上則是計算機輔助設計。他的目標就是通過人類的智慧實現(xiàn)后面敘述的一種情形。計算機輔助設計仍停留在計算機輔助繪圖階段。大多數(shù)簡單的CAD只能進行自動草繪功能。更高級的系統(tǒng)呢功能進行分析引導工程師得到必須平衡的關系。因為不同的賣主提供具有不同特點的計算機輔助設計系統(tǒng),這些系統(tǒng)之間具有各自不同的數(shù)據(jù)標準。他們之間的交流和數(shù)據(jù)轉化變得非常有意義。IGES在不同系統(tǒng)之間數(shù)據(jù)格式轉換中扮演了中間者的角色。不同軟件廠商只要提供與IGES格式相互轉換的模塊系統(tǒng),各種計算機輔助設計軟件能導入和導出IGES格式的文件,同時這種格式的文件在3D圖形轉換種也有根廣泛的應用。目前一種基于IGES格式的實體建模技術的數(shù)據(jù)格式(PDES)也得到很大的發(fā)展。這種格式的文件占用系統(tǒng)空間小、速度快、可靠性高。由于國外也有各種不同的標準存在,預計不久這些標準將導致一個國際標準規(guī)格,叫產(chǎn)品模型數(shù)據(jù)(STEP)的交換的標準。硬件和軟件硬件在計算機輔助設計系統(tǒng)之間存在很大的差別。服務器早就用于計算機輔助設計系統(tǒng)。處理速度迅速增加的微型和小型計算機也可以進行的計算機輔助設計系統(tǒng)的運行。網(wǎng)絡一般被使用以便設計可以被中心儲存,數(shù)據(jù)可以被分給設計者。很多輸入裝置使用的非常廣泛。普通I/O設備包括:鍵盤,鼠標,跟蹤球,數(shù)子化儀,控制桿,輔助鍵盤和光筆數(shù)字化儀。典型的輸出裝置通常是屏幕,繪圖儀,打印機、移動硬盤和軟盤。有多種計算機輔助設計軟件提供給工作站和微型計算機。數(shù)據(jù)包在某種程度上以繪圖信息形式的交換文件變化。這些文件可以被輸入到其他軟件中幫助可編程的機床。計算機輔助設計系統(tǒng)的要素計算機輔助設計系統(tǒng)的設計過程由四級組成,如下描述。幾何學模型化。在幾何學模型化過程中,將一個物體或者它的任何部分進行分析后用數(shù)字描述。首先設計者給出命令建立或者修改能夠完成二維或三維的線條、表面、實體、尺寸和正文構造幾何學模型。幾何學模型可以用三種不同的方式呈現(xiàn)。如下圖(線框內;圖10.ld),全部邊緣都象固體的線一樣可見。這幅圖像可能是含糊的,特別是復雜的形狀。不過,各種各樣的顏色一般用于物體的不同的部分,因此使物體更容易想象。在表面模型里,全部可見的表面被用模型顯示,并且在實體模型里,全部表面被顯示,但是內部以數(shù)據(jù)的形式描述(數(shù)字10.1e,f)設計分析和最優(yōu)化。設計幾何學特征有可能由分析壓力、疲勞、撓度、振動組成。這階段溫度分布或者容忍。各種各樣復雜軟件包能計算出質量的準確并且快速的變化。設計評論和評估。設計過程忠一個重要的設計階段是檢查在各種各樣的組成部分之間是否存在任何干涉,是否有自由度,例如將要作為運動構件的連桿。計算機軟件能利用動畫模擬運動的構件及其它運動狀態(tài)。在設計過程的評論和評估階段,零件已經(jīng)具有制造需要的準確尺寸和公差。文檔編制和草繪。在那些先前階段完成之后,那些設計被自動化草繪儀復制作為文檔編制和參考用,細節(jié)和圖紙也被沖印。計算機輔助設計系統(tǒng)能繪制零件的剖視圖、局部視圖,并且能提取零件的各種各樣的視圖。以前
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 《疫細胞因子》課件
- 2025至2030年中國就地顯示側裝翻板液位計數(shù)據(jù)監(jiān)測研究報告
- 2025至2030年中國雙層不銹鋼保溫煙囪數(shù)據(jù)監(jiān)測研究報告
- 2025年金屬惰性氣體保護焊機項目可行性研究報告
- 2025年脫水防銹油項目可行性研究報告
- 2025年箱形車固定器項目可行性研究報告
- 2025年特殊焊條項目可行性研究報告
- 2025年中國飾條市場調查研究報告
- 2025年加長漁桿項目可行性研究報告
- 2025年中國禮品鼠標市場調查研究報告
- 沖壓生產(chǎn)的品質保障
- 《腎臟的結構和功能》課件
- 2023年湖南聯(lián)通校園招聘筆試題庫及答案解析
- 上海市徐匯區(qū)、金山區(qū)、松江區(qū)2023屆高一上數(shù)學期末統(tǒng)考試題含解析
- 護士事業(yè)單位工作人員年度考核登記表
- 天津市新版就業(yè)、勞動合同登記名冊
- 產(chǎn)科操作技術規(guī)范范本
- 人教版八年級上冊地理全冊單元測試卷(含期中期末試卷及答案)
- 各種焊工證件比較和釋義
- 感染性疾病標志物及快速診斷課件(PPT 134頁)
- 2022年煤礦地面消防應急預案范文
評論
0/150
提交評論