├── IdealRectifier ├── Two_Zone_MVDC_Ideal.m ├── Two_Zone_MVDC_PSolver.slx ├── Two_Zone_MVDC_PSolver_R2020b.slx ├── Two_Zone_MVDC_PSolver_R2022b.slx ├── Two_Zone_MVDC_PSolver_Thermal_R2020b.slx └── Two_Zone_MVDC_PSolver_Thermal_R2022b.slx ├── LICENSE.md ├── README.md ├── SECURITY.md ├── ThyristorRectifier ├── AC1A.slx ├── AC1A_R2022b.slx ├── Two_Zone_MVDC_Thyristor.m ├── Two_Zone_MVDC_Thyristor_240Hz.slx ├── Two_Zone_MVDC_Thyristor_240Hz_R2022b.slx ├── Zone_1_Zone_2_Thyristor_240Hz.slx └── Zone_1_Zone_2_Thyristor_240Hz_R2022b.slx ├── Tutorial ├── Additional │ ├── 1. voltage droop │ │ ├── active_voltage_droop_01.slx │ │ ├── active_voltage_droop_ideal_rectifier.slx │ │ ├── voltage_droop_01.slx │ │ ├── voltage_droop_02.slx │ │ ├── voltage_droop_03.slx │ │ ├── voltage_droop_03_ideal_rectifier.slx │ │ ├── voltage_droop_6pulse_rectifier.slx │ │ ├── voltage_droop_ideal_rectifier.slx │ │ └── voltage_isochronous_droop_01.slx │ ├── 2. rectification │ │ ├── diode.jpg │ │ └── rectifiers01.slx │ ├── 3. system │ │ ├── Two_Zone_MVDC_12pulse_ACDC.slx │ │ ├── Two_Zone_MVDC_12pulse_ACDC_degradation.slx │ │ ├── Two_Zone_MVDC_6pulse_ACDC.slx │ │ ├── Two_Zone_MVDC_DC.slx │ │ └── Two_Zone_MVDC_Ideal_ACDC.slx │ ├── initParams.mat │ └── startup.m └── Supporting_Marine_Electrification_Technology_Development_Tutorial.pdf ├── Two_Zone_MVDC.prj ├── Two_Zone_MVDC_Electric_Ship.pdf ├── initParams.mat └── resources └── project ├── Project.xml ├── ProjectData.type.Info.xml ├── Root.type.Categories ├── FileClassCategory.type.Category.xml └── FileClassCategory.type.Category │ ├── artifact.type.Label.xml │ ├── convenience.type.Label.xml │ ├── derived.type.Label.xml │ ├── design.type.Label.xml │ ├── none.type.Label.xml │ ├── other.type.Label.xml │ └── test.type.Label.xml ├── Root.type.EntryPointGroups ├── a831405e-0ed6-4d5c-8267-e5b883a5fda7.type.EntryPointGroup.xml └── b29216e4-86d0-4d5c-847a-f2c33f7cef27.type.EntryPointGroup.xml ├── Root.type.EntryPoints ├── 0d565bd5-dd95-4158-bcab-9d85ed7d4e50.type.EntryPoint.xml ├── 0f991c10-17c3-4f04-9c5a-0087b4a1ae82.type.EntryPoint.xml ├── 1b0e1cd0-d841-4725-a7b0-946a9bdeace6.type.EntryPoint.xml ├── 277eb28f-c997-4d99-a983-3b17eafde9ef.type.EntryPoint.xml ├── 575ab3da-6800-4bb1-a6a5-f2abd8acddde.type.EntryPoint.xml ├── 636b136a-cff3-4dbc-a5db-5b16bab3fbbc.type.EntryPoint.xml ├── 7651b603-cfda-432b-bc24-fc18e65b6b5c.type.EntryPoint.xml └── b124c550-8878-4abf-9a91-eaabf8ee5c87.type.EntryPoint.xml ├── Root.type.Files ├── IdealRectifier.type.File.xml ├── IdealRectifier.type.File │ ├── 1.type.DIR_SIGNIFIER.xml │ ├── Two_Zone_MVDC_Ideal.m.type.File.xml │ ├── Two_Zone_MVDC_PSolver.slx.type.File.xml │ ├── Two_Zone_MVDC_PSolver_R2020b.slx.type.File.xml │ ├── Two_Zone_MVDC_PSolver_R2022b.slx.type.File.xml │ ├── Two_Zone_MVDC_PSolver_Thermal_R2020b.slx.type.File.xml │ └── Two_Zone_MVDC_PSolver_Thermal_R2022b.slx.type.File.xml ├── ThyristorRectifier.type.File.xml ├── ThyristorRectifier.type.File │ ├── 1.type.DIR_SIGNIFIER.xml │ ├── AC1A.slx.type.File.xml │ ├── AC1A_R2022b.slx.type.File.xml │ ├── Two_Zone_MVDC_Thyristor.m.type.File.xml │ ├── Two_Zone_MVDC_Thyristor_240Hz.slx.type.File.xml │ ├── Two_Zone_MVDC_Thyristor_240Hz_R2022b.slx.type.File.xml │ ├── Zone_1_Zone_2_Thyristor_240Hz.slx.type.File.xml │ └── Zone_1_Zone_2_Thyristor_240Hz_R2022b.slx.type.File.xml └── initParams.mat.type.File.xml ├── Root.type.ProjectPath ├── 0fbef127-1e0f-44e0-be13-f92145b4d5ed.type.Reference.xml └── 53970470-569f-45c6-82ac-8ce118f93adc.type.Reference.xml └── uuid-35d61b07-8f2f-4a73-9ec4-0e0b85ed249c.xml /IdealRectifier/Two_Zone_MVDC_Ideal.m: -------------------------------------------------------------------------------- 1 | % Copyright 2020 The MathWorks, Inc. 2 | 3 | open_system('Two_Zone_MVDC_PSolver.slx') -------------------------------------------------------------------------------- /IdealRectifier/Two_Zone_MVDC_PSolver.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/IdealRectifier/Two_Zone_MVDC_PSolver.slx -------------------------------------------------------------------------------- /IdealRectifier/Two_Zone_MVDC_PSolver_R2020b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/IdealRectifier/Two_Zone_MVDC_PSolver_R2020b.slx -------------------------------------------------------------------------------- /IdealRectifier/Two_Zone_MVDC_PSolver_R2022b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/IdealRectifier/Two_Zone_MVDC_PSolver_R2022b.slx -------------------------------------------------------------------------------- /IdealRectifier/Two_Zone_MVDC_PSolver_Thermal_R2020b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/IdealRectifier/Two_Zone_MVDC_PSolver_Thermal_R2020b.slx -------------------------------------------------------------------------------- /IdealRectifier/Two_Zone_MVDC_PSolver_Thermal_R2022b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/IdealRectifier/Two_Zone_MVDC_PSolver_Thermal_R2022b.slx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThyristorRectifier/AC1A.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/ThyristorRectifier/AC1A.slx -------------------------------------------------------------------------------- /ThyristorRectifier/AC1A_R2022b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/ThyristorRectifier/AC1A_R2022b.slx -------------------------------------------------------------------------------- /ThyristorRectifier/Two_Zone_MVDC_Thyristor.m: -------------------------------------------------------------------------------- 1 | % Copyright 2020 The MathWorks, Inc. 2 | 3 | open_system('Two_Zone_MVDC_Thyristor_240Hz.slx') -------------------------------------------------------------------------------- /ThyristorRectifier/Two_Zone_MVDC_Thyristor_240Hz.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/ThyristorRectifier/Two_Zone_MVDC_Thyristor_240Hz.slx -------------------------------------------------------------------------------- /ThyristorRectifier/Two_Zone_MVDC_Thyristor_240Hz_R2022b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/ThyristorRectifier/Two_Zone_MVDC_Thyristor_240Hz_R2022b.slx -------------------------------------------------------------------------------- /ThyristorRectifier/Zone_1_Zone_2_Thyristor_240Hz.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/ThyristorRectifier/Zone_1_Zone_2_Thyristor_240Hz.slx -------------------------------------------------------------------------------- /ThyristorRectifier/Zone_1_Zone_2_Thyristor_240Hz_R2022b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/ThyristorRectifier/Zone_1_Zone_2_Thyristor_240Hz_R2022b.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/active_voltage_droop_01.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/active_voltage_droop_01.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/active_voltage_droop_ideal_rectifier.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/active_voltage_droop_ideal_rectifier.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_droop_01.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_droop_01.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_droop_02.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_droop_02.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_droop_03.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_droop_03.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_droop_03_ideal_rectifier.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_droop_03_ideal_rectifier.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_droop_6pulse_rectifier.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_droop_6pulse_rectifier.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_droop_ideal_rectifier.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_droop_ideal_rectifier.slx -------------------------------------------------------------------------------- /Tutorial/Additional/1. voltage droop/voltage_isochronous_droop_01.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/1. voltage droop/voltage_isochronous_droop_01.slx -------------------------------------------------------------------------------- /Tutorial/Additional/2. rectification/diode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/2. rectification/diode.jpg -------------------------------------------------------------------------------- /Tutorial/Additional/2. rectification/rectifiers01.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/2. rectification/rectifiers01.slx -------------------------------------------------------------------------------- /Tutorial/Additional/3. system/Two_Zone_MVDC_12pulse_ACDC.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/3. system/Two_Zone_MVDC_12pulse_ACDC.slx -------------------------------------------------------------------------------- /Tutorial/Additional/3. system/Two_Zone_MVDC_12pulse_ACDC_degradation.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/3. system/Two_Zone_MVDC_12pulse_ACDC_degradation.slx -------------------------------------------------------------------------------- /Tutorial/Additional/3. system/Two_Zone_MVDC_6pulse_ACDC.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/3. system/Two_Zone_MVDC_6pulse_ACDC.slx -------------------------------------------------------------------------------- /Tutorial/Additional/3. system/Two_Zone_MVDC_DC.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/3. system/Two_Zone_MVDC_DC.slx -------------------------------------------------------------------------------- /Tutorial/Additional/3. system/Two_Zone_MVDC_Ideal_ACDC.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/3. system/Two_Zone_MVDC_Ideal_ACDC.slx -------------------------------------------------------------------------------- /Tutorial/Additional/initParams.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/initParams.mat -------------------------------------------------------------------------------- /Tutorial/Additional/startup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Additional/startup.m -------------------------------------------------------------------------------- /Tutorial/Supporting_Marine_Electrification_Technology_Development_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Tutorial/Supporting_Marine_Electrification_Technology_Development_Tutorial.pdf -------------------------------------------------------------------------------- /Two_Zone_MVDC.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Two_Zone_MVDC.prj -------------------------------------------------------------------------------- /Two_Zone_MVDC_Electric_Ship.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/Two_Zone_MVDC_Electric_Ship.pdf -------------------------------------------------------------------------------- /initParams.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/initParams.mat -------------------------------------------------------------------------------- /resources/project/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/ProjectData.type.Info.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Categories/FileClassCategory.type.Category.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/artifact.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/convenience.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/derived.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/design.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/none.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/other.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Categories/FileClassCategory.type.Category/test.type.Label.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPointGroups/a831405e-0ed6-4d5c-8267-e5b883a5fda7.type.EntryPointGroup.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPointGroups/b29216e4-86d0-4d5c-847a-f2c33f7cef27.type.EntryPointGroup.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/0d565bd5-dd95-4158-bcab-9d85ed7d4e50.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/0d565bd5-dd95-4158-bcab-9d85ed7d4e50.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/0f991c10-17c3-4f04-9c5a-0087b4a1ae82.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/0f991c10-17c3-4f04-9c5a-0087b4a1ae82.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/1b0e1cd0-d841-4725-a7b0-946a9bdeace6.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/1b0e1cd0-d841-4725-a7b0-946a9bdeace6.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/277eb28f-c997-4d99-a983-3b17eafde9ef.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/277eb28f-c997-4d99-a983-3b17eafde9ef.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/575ab3da-6800-4bb1-a6a5-f2abd8acddde.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/575ab3da-6800-4bb1-a6a5-f2abd8acddde.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/636b136a-cff3-4dbc-a5db-5b16bab3fbbc.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/636b136a-cff3-4dbc-a5db-5b16bab3fbbc.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/7651b603-cfda-432b-bc24-fc18e65b6b5c.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/7651b603-cfda-432b-bc24-fc18e65b6b5c.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.EntryPoints/b124c550-8878-4abf-9a91-eaabf8ee5c87.type.EntryPoint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.EntryPoints/b124c550-8878-4abf-9a91-eaabf8ee5c87.type.EntryPoint.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_Ideal.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_Ideal.m.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_R2020b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_R2020b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_R2022b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_R2022b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_Thermal_R2020b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_Thermal_R2020b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_Thermal_R2022b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/IdealRectifier.type.File/Two_Zone_MVDC_PSolver_Thermal_R2022b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/1.type.DIR_SIGNIFIER.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/AC1A.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/AC1A.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/AC1A_R2022b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/AC1A_R2022b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/Two_Zone_MVDC_Thyristor.m.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/Two_Zone_MVDC_Thyristor.m.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/Two_Zone_MVDC_Thyristor_240Hz.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/Two_Zone_MVDC_Thyristor_240Hz.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/Two_Zone_MVDC_Thyristor_240Hz_R2022b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/Two_Zone_MVDC_Thyristor_240Hz_R2022b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/Zone_1_Zone_2_Thyristor_240Hz.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/Zone_1_Zone_2_Thyristor_240Hz.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/ThyristorRectifier.type.File/Zone_1_Zone_2_Thyristor_240Hz_R2022b.slx.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/ThyristorRectifier.type.File/Zone_1_Zone_2_Thyristor_240Hz_R2022b.slx.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.Files/initParams.mat.type.File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/Two-Zone-MVDC-Electric-Ship/HEAD/resources/project/Root.type.Files/initParams.mat.type.File.xml -------------------------------------------------------------------------------- /resources/project/Root.type.ProjectPath/0fbef127-1e0f-44e0-be13-f92145b4d5ed.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/Root.type.ProjectPath/53970470-569f-45c6-82ac-8ce118f93adc.type.Reference.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/project/uuid-35d61b07-8f2f-4a73-9ec4-0e0b85ed249c.xml: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------