版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
SystemDSDYNandDSOUTAsmentionedearlier,theprimarypurposeoftheSystemDynamicssectionistoprovidetheuserwiththeabilitytoinserthisorhercodedirectlyintotheEMTDCmainprogram. Atthesametime,theSystemDynamicssectionofferstheadditionaladvantageinthatelectricalelementsneednotbepresentinasimulation. Thatis,EMTDCcanberunwithoutthepresenceofanyelectricalcomponentsor就是说EMTDC可以在没有任何电力组件和网络的情况下运行。Forexample,alinearcontrolsystemcanbeyzedbyusingclassiccontroltheory. Ifnon-linearitiessuchaslimits,dead-bands,saturationfunctions,switches,etc.arepartofthecontroller,thentimeysisofsuchamodelcanbebuiltintotheSystemDynamics,providingapracticalsolutionmethodwithorwithoutelectriccircuits.SystemDynamic,SystemdynamicDSDYNandDSOUTTheSystemsDynamicssectionissplit-upintotwosub-sections, passing(包含)thenetworksolution(seeFigure2-1):ThesearetheDSDYNandDSOUTsubroutines. ThefactthatSystemsDynamicscanbeutilisedbothbeforeandaftertheelectricnetworkissolved,offersagreatadvantageinprogram Ifjudiciallyselected,theusercanavoidtimestepdelaysbetweencontrolandelectricalsystems,forinstance.SD部分可以分割成两个子模块,(实际上包含了网络求解),它们DSDYNDSOUT子程序。在求解网络前后两次利用SD为程序的灵活性提供了很大的优势。AlthoughtherearenomajordifferencesbetweenDSDYNandDSOUT(i.e.theycanbecalledinterchangeably),therearespecificusesforeach.Ingeneral,mostcontroldynamicscodeshouldbeplacedin DSOUTisprimarilyusedtooutputtiesafterthenetworksolutioniscalculated. Thecombinationofthesetwosubroutinesallowstheusertodecidewhethercertaincontroldynamicsshouldbecalculatedusingpreorpostsolution尽管在DSDYNDSOUT之间没有重大的不同(i.e.它们可以交替的被调用),DSDYNDSOUTTimeDelaysandCodeInsomeinstances,itisimportanttoestablishtheproperuseofDSDYNandDSOUTtoavoidunnecessarytimestepdelaysinthecontrol在有些例子中,在控制动态中合适的使用DSDYNDSOUT避免不必要的时间步Metersusedforthemeasurementofvoltageandcurrentsforexample,areprimarilydefinedinDSOUT: Thisisthelogicalsubroutinetochoose,asDSOUTwillsupplythemeasuredtiesdirectlyfollowingthenetworksolution. However,measuredtiesareoftenusedasinputstocontrolsystems,wheretheindividualcontrolcomponentsaredefinedinDSDYN. Therefore,thecontrolsystemmaybebasingoutputsontiesdefinedintheprevioustimestep.序,如果选在DSOUT中,提供求解网络之后的工程量测量值。EXAMPLE2-Figure2-2-SimpleComparatorCircuitcreatedinConsiderthesimplecircuitinFigure2-2.Acomparatorisbeingusedtocomparearealconstantwithasignal'Ea',whichisameasuredvoltagefromavoltmeter. Thecomparatorisadjustedsoastogiveahighoutputwhen'Ea' esgreaterthan0.0,andalowoutput ThecomparatordynamicsaredefinedbydefaultinDSDYN,whereasthemeasuredvoltage'Ea'isdefinedinDSOUTasanoutputEa01,00.默认的比较器动态定义在DSDYN中,然Ea作为一个输出值定义在DSOUT中。Withtheaboveconfigure-tion,thecomparatoroutputsignalwillcontainasingletimestepdelay. ThisisduetothefactthatthecomparatordynamicsinDSDYNareusingameasuredvoltage'Ea',definedinDSOUTfromthepreviousstep(seeFigure2-1).ThistimestepdelaycanberemovedbysimplymovingthecomparatordynamicscodefromDSDYNtoDSOUT. Thiswillforcethecomparatortousethemeasuredvoltagefromthepresenttimestep,beforedeterminingitsoutput.这个时间步长延迟可以简单地通过移动比较器动态代码从DSDYNDSOUT来清AssemblyofSystemDynamicsCode(FortranSD部分代码的集成(FORTRAN文件inthetheDSDYNand/orDSOUTsegmentsofeachComponentDefinitionWhenaCaseProjectiscompiledinPSCAD,theSystemDynamicsisautomaticallyassembledintoformattedFortrancode. informationrequiredtoconstructtheFortraninthetheDSDYNand/orDSOUTsegmentsofeachComponentDefinition,whetherdefinedintheMasterLibraryorinauserdefinedlibrary.PSCAD编译一个工程时,SD部分被自动的集成到格式化的fortran代码中。构造FORTRAN代码的信息从工程中存在的组件对应的DSDYN和DSOUT代码段Figure2-3illustrateshowPSCreparesandconstructstheFortrancodeforEMTDC. ThePSCADCaseProjectshowncontainsadefaultmainpagewithaComponentInstanceandaPageModule. Whenthecaseiscompiled,anequivalentFortranfilecalled'main.f'iscreated,whichactsasthemainroutineforthecase. WithinitareplacedtheDSDYNandDSOUTsubroutines(SystemDynamics),whichcontaincomponentcodeand/orcallstouser-definedsubroutines,specifiedintheComponentDefinitions.2-3PSCADEMTDCfortran代码的。PSCAD工程包含EachsubistreatedasasubroutineandreceivesitsownFortran AsshowninFigure2-3,thesubcalled'abc'receivesacorrespondingfilecalled'abc.f'.WithinthisfileareplacedlocalDSDYNandDSOUTsubroutines,whicharerenamedtoabcDYNandabcOUT(i.e.PageModulenamereplacesDS). abcDYNandabcOUTarethencalledfromDSDYNandDSOUTin'main.f'.DSOUTabcDYNabcOUT.这两个文件接着被main.fDSDYN和DSOUT调用。Figure2-3-AssemblyofDSDYNandDSOUTThismethodof'nested'routinescontinuesoniffurtherlevelsofsubsexist. Forinstance,ifanothersubexistswithin'abc',thentheDSDYNandDSOUTsubroutines,localtothisnewsub-page,willbecalledfromabcDYNandabcOUTin'abc.f'.NOTE:Subs(orPageModules)shouldnotbeconfusedwithasubsystem.FormoreonsubsystemsinEMTDC,seeSubsystemsinElectricNetworks.EXAMPLE2-AsanillustrationastohowthecomponentcodeisinsertedintoDSDYN,considerthesimpleMultipliercomponent,showninFigure2-4:Figure2-4-MultiplierComponentinThecodeforthisdeviceexistsasPSCADScriptintheDSDYNsectionoftheComponent Itisshownbelowforeasy!$OUT=$IN1*!WhenthePSCrojectiscompiled,theabovescriptisextractedfromtheMultiplierComponentDefin
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年环境监测技术与评估方法题库
- 2026年数据标准化技术委员会标准制定岗考试题库
- T-ZBXH 136-2025 玉米抗螨性鉴定技术规程
- 二年级语文下册《亡羊补牢》教案
- 2026年服务业客户服务流程精简降本增效方案
- 浙江省杭州市余杭区临平区2025-2026学年七年级下学期期中数学试卷(含答案)
- 新产品上市推广执行方案
- 企业乡土文化建设方案
- 庐阳区项目建设方案
- 面向金融科技的2026年区块链应用安全方案
- 2026年网约车驾驶员从业资格试题及答案
- 国家义务教育质量监测四年级科学质量检测试题
- 湖南新高考教研联盟暨长郡二十校联盟2026届高三第二次联考英语试题+答案
- 物流运输风险识别与控制
- 关于杭州市“社交主题酒吧”运营模式与典型案例的调研分析
- 阿里巴巴集团内部审计制度
- 纺粘针刺非织造布制作工操作知识考核试卷含答案
- 2025年国防军事动员教育知识竞赛题库及答案(共50题)
- 泛光照明施工安全措施方案
- KPS评分表模板及使用指南
- 2025年专利代理师资格真题及答案解析
评论
0/150
提交评论