├── .gitattributes ├── .gitignore ├── 01_Libraries ├── 01_Controller │ └── BLDC_controller_Lib.slx └── 02_Plant │ ├── BLDC_model_sf.mexw64 │ ├── BLDCmotorControl_data.mat │ └── PWM_generator_sf.mexw64 ├── 02_Figures ├── FOC_algorithm.png ├── FW_architecture.png ├── control_methods.png ├── firmware_architecture.pptx └── paramTable.png ├── 03_CreateParamTable ├── create_tableParamType.m ├── setBlockSetting.m └── tableParamType.xlsx ├── 04_Literature ├── [0] STM32F PMSM single-dual FOC SDK v4.3.pdf ├── [1] 8-Microchip AN1078 - Sensorless Field Oriented Control of a PMSM.pdf ├── [2] 8-Sensorless PMSM Field-Oriented Control.pdf ├── [3] Texas_intrs - FOC introduction.pdf ├── [4] Texas_intrs - Clarke and Park.pdf ├── [5] FOC - Optimised space vector modulation for variable speed.pdf ├── [6] Sensorless-FOCWithFlux-Weakening.pdf └── [7] Practical Field Weakening Current Vector Control.pdf ├── 99_RecycleBin ├── BLDC_controller_Lib_AccelerationBased.slx ├── BLDC_controller_Lib_CounterBased.slx ├── BLDCmotorControl_FOC_R2017b.slx ├── BLDCmotorControl_FOC_R2017b_fixdt_Ffwd.slx ├── BLDCmotorControl_FOC_R2017b_fixdt_speedDeriv.slx ├── Filter_fixdt │ └── filtLowPass_ert_rtw_sFix32En16 │ │ ├── filtLowPass.c │ │ └── filtLowPass.h ├── Mixer_fixdt │ ├── mixer.c │ └── mixer.h ├── Motor_Control_Model_Package │ ├── Model_1_Initialization.m │ ├── Model_1_PI_Gain_TestBench.slx │ ├── Model_2_Initialization.m │ ├── Model_2_SpeedClosedLoop.slx │ ├── Model_3_Flux_Weakening_Control.slx │ ├── Model_3_Initialization.m │ ├── ReadMe.txt │ └── license.txt ├── RateLimiter_fixdt │ ├── rateLimiter.c │ └── rateLimiter.h ├── init_model_Ffwd.m ├── pe_electric_engine_dyno.slx └── pe_electric_engine_dyno_data.m ├── BLDC_controller_ert_rtw ├── BLDC_controller.c ├── BLDC_controller.h ├── BLDC_controller_data.c ├── ert_main.c └── rtwtypes.h ├── BLDCmotor_FOC_R2017b_fixdt.slx ├── LICENSE ├── README.md ├── docs ├── index.html ├── stylesheets │ └── combined.css └── support │ ├── lib │ ├── dgrid │ │ ├── LICENSE │ │ └── css │ │ │ ├── TouchScroll.css │ │ │ ├── columnset.css │ │ │ ├── dgrid.css │ │ │ ├── dgrid_rtl.css │ │ │ ├── extensions │ │ │ ├── ColumnHider.css │ │ │ ├── ColumnReorder.css │ │ │ ├── ColumnResizer.css │ │ │ ├── CompoundColumns.css │ │ │ └── Pagination.css │ │ │ ├── images │ │ │ ├── ui-icons_222222_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── skins │ │ │ ├── cactus.css │ │ │ ├── claro.css │ │ │ ├── images │ │ │ └── row_back.png │ │ │ ├── nihilo.css │ │ │ ├── sage.css │ │ │ ├── slate.css │ │ │ ├── soria.css │ │ │ ├── squid.css │ │ │ └── tundra.css │ ├── dijit │ │ ├── LICENSE │ │ ├── icons │ │ │ └── images │ │ │ │ ├── commonIconsObjActDisabled.png │ │ │ │ ├── commonIconsObjActDisabled_rtl.png │ │ │ │ ├── commonIconsObjActEnabled.png │ │ │ │ ├── commonIconsObjActEnabled8bit.png │ │ │ │ ├── commonIconsObjActEnabled8bit_rtl.png │ │ │ │ ├── commonIconsObjActEnabled_rtl.png │ │ │ │ ├── editorIconsDisabled.png │ │ │ │ ├── editorIconsDisabled_rtl.png │ │ │ │ ├── editorIconsEnabled.png │ │ │ │ ├── editorIconsEnabled_rtl.png │ │ │ │ ├── loadingAnimation.gif │ │ │ │ └── loadingAnimation_rtl.gif │ │ ├── nls │ │ │ ├── ar │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── az │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── bg │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── bs │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ca │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── common.js │ │ │ ├── cs │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── da │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── de │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── el │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── es │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── eu │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── fi │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── fr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── he │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── hr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── hu │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── id │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── it │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ja │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── kk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ko │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── loading.js │ │ │ ├── mk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── nb │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── nl │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── pl │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── pt-pt │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── pt │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ro │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── ru │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sl │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── sv │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── th │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── tr │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── uk │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ ├── zh-tw │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ │ └── zh │ │ │ │ ├── common.js │ │ │ │ └── loading.js │ │ └── themes │ │ │ └── claro │ │ │ ├── claro.css │ │ │ ├── form │ │ │ └── images │ │ │ │ ├── buttonArrows.png │ │ │ │ ├── buttonDisabled.png │ │ │ │ ├── buttonDisabled.svg │ │ │ │ ├── buttonEnabled.png │ │ │ │ ├── buttonEnabled.svg │ │ │ │ ├── checkboxAndRadioButtons_IE6.png │ │ │ │ ├── checkboxRadioButtonStates.png │ │ │ │ ├── commonFormArrows.png │ │ │ │ ├── error.png │ │ │ │ └── sliderThumbs.png │ │ │ ├── images │ │ │ ├── activeGradient.png │ │ │ ├── activeGradient.svg │ │ │ ├── calendar.png │ │ │ ├── calendarArrows.png │ │ │ ├── calendarArrows8bit.png │ │ │ ├── checkmarkNoBorder.gif │ │ │ ├── checkmarkNoBorder.png │ │ │ ├── dialogCloseIcon.png │ │ │ ├── dialogCloseIcon8bit.png │ │ │ ├── dnd.png │ │ │ ├── loadingAnimation.gif │ │ │ ├── progressBarAnim.gif │ │ │ ├── progressBarFull.png │ │ │ ├── spriteArrows.png │ │ │ ├── standardGradient.png │ │ │ ├── standardGradient.svg │ │ │ ├── tooltip.png │ │ │ ├── tooltip8bit.png │ │ │ ├── treeExpandImages.png │ │ │ └── treeExpandImages8bit.png │ │ │ └── layout │ │ │ └── images │ │ │ ├── tabBottomSelected.png │ │ │ ├── tabBottomSelected.svg │ │ │ ├── tabBottomUnselected.png │ │ │ ├── tabBottomUnselected.svg │ │ │ ├── tabClose.png │ │ │ ├── tabLeftSelected.png │ │ │ ├── tabLeftSelected.svg │ │ │ ├── tabLeftUnselected.png │ │ │ ├── tabLeftUnselected.svg │ │ │ ├── tabNested.png │ │ │ ├── tabRightSelected.png │ │ │ ├── tabRightSelected.svg │ │ │ ├── tabRightUnselected.png │ │ │ ├── tabRightUnselected.svg │ │ │ ├── tabTopSelected.png │ │ │ ├── tabTopSelected.svg │ │ │ ├── tabTopUnselected.png │ │ │ └── tabTopUnselected.svg │ ├── dojo │ │ ├── LICENSE │ │ └── resources │ │ │ ├── LICENSE │ │ │ ├── blank.gif │ │ │ ├── blank.html │ │ │ ├── dnd.css │ │ │ ├── dojo.css │ │ │ ├── iframe_history.html │ │ │ └── images │ │ │ ├── dndCopy.png │ │ │ ├── dndMove.png │ │ │ ├── dndNoCopy.png │ │ │ └── dndNoMove.png │ ├── put-selector │ │ └── LICENSE │ ├── webview │ │ ├── config.js │ │ ├── main-embedded-webview.js │ │ ├── main.js │ │ ├── mg │ │ │ └── images │ │ │ │ ├── closed_hand.cur │ │ │ │ ├── closed_hand.png │ │ │ │ ├── open_hand.cur │ │ │ │ ├── open_hand.png │ │ │ │ ├── zoom_in.cur │ │ │ │ └── zoom_in.png │ │ ├── nls │ │ │ ├── webview_ROOT.js │ │ │ ├── webview_ar.js │ │ │ ├── webview_ca.js │ │ │ ├── webview_cs.js │ │ │ ├── webview_da.js │ │ │ ├── webview_de.js │ │ │ ├── webview_el.js │ │ │ ├── webview_en-gb.js │ │ │ ├── webview_en-us.js │ │ │ ├── webview_es-es.js │ │ │ ├── webview_fi-fi.js │ │ │ ├── webview_fr-fr.js │ │ │ ├── webview_he-il.js │ │ │ ├── webview_hu.js │ │ │ ├── webview_it-it.js │ │ │ ├── webview_ja-jp.js │ │ │ ├── webview_ko-kr.js │ │ │ ├── webview_nb.js │ │ │ ├── webview_nl-nl.js │ │ │ ├── webview_pl.js │ │ │ ├── webview_pt-br.js │ │ │ ├── webview_pt-pt.js │ │ │ ├── webview_ru.js │ │ │ ├── webview_sk.js │ │ │ ├── webview_sl.js │ │ │ ├── webview_sv.js │ │ │ ├── webview_th.js │ │ │ ├── webview_tr.js │ │ │ ├── webview_zh-cn.js │ │ │ └── webview_zh-tw.js │ │ ├── palette │ │ │ └── images │ │ │ │ ├── PaletteIcons.png │ │ │ │ └── PaletteSeparator.png │ │ ├── search │ │ │ └── images │ │ │ │ └── SearchIcons.png │ │ ├── webview.css │ │ └── webview.js │ └── xstyle │ │ └── LICENSE │ ├── slwebview.json │ └── slwebview_files │ ├── BLDCmotor_FOC_R2017b_fixdt_10035_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_10035_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_10035_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_10066_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_10066_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_10066_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_10364_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_10364_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_10364_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11023_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11023_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11023_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11026_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11026_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11026_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11041_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11041_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11041_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11056_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11056_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11056_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11151_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11151_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11151_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11159_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11159_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11159_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11200_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11200_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11200_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11201_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11201_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11201_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11207_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11207_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11207_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11211_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11211_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11211_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11215_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11215_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11215_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11254_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11254_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11254_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_2342_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_2342_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_2342_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_2395_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_2395_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_2395_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11265_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11267_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11267_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11267_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11357_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11357_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11357_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11408_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11408_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11408_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11719_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11719_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11719_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11746_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11746_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11746_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11747_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11747_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11747_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11769_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11769_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11769_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2423_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2423_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2423_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2428_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2428_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2428_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2435_2515_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2435_2515_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2435_2515_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2435_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2435_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2435_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2473_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2473_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2473_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2480_2515_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2480_2515_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2480_2515_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2480_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2480_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2480_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2507_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2507_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_2507_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11784_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11815_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11815_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11815_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11884_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11884_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11884_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11895_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11895_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11895_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11900_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11900_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11900_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_11930_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_11930_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_11930_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12109_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12109_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12109_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12126_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12126_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12126_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12219_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12219_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12219_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12283_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12283_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12283_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12289_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12289_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12289_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12294_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12294_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12294_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_2877_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_2877_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_2877_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_2895_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_2895_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_2895_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12306_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12312_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12312_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12312_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_2877_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_2877_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_2877_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_2895_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_2895_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_2895_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12335_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_2877_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_2877_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_2877_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_2895_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_2895_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_2895_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12336_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12392_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12392_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12392_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12482_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12482_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12482_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12487_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12487_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12487_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2779_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2779_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2779_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2791_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2791_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2791_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2816_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2816_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_2816_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12533_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12547_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12547_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12547_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2779_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2779_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2779_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2791_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2791_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2791_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2816_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2816_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_2816_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12580_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12581_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12581_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12581_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12587_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12587_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12587_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2779_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2779_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2779_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2791_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2791_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2791_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2816_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2816_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_2816_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12607_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12608_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12608_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12608_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12616_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12616_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12616_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_12638_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_12638_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_12638_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_29_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_29_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_29_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_29_icons.css │ ├── BLDCmotor_FOC_R2017b_fixdt_29_icons.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8220_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8220_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8220_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8225_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8225_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8225_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8235_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8235_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8235_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8247_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8247_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8247_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8263_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8263_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8263_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8272_2515_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8272_2515_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8272_2515_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8272_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8272_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8272_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8314_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8314_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8314_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8384_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8384_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8384_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8469_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8469_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8469_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8658_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8658_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8658_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8726_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8726_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8726_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8738_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8738_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8738_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8743_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8743_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8743_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_8913_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_8913_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_8913_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9045_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9045_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9045_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9198_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9198_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9198_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9292_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9292_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9292_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9293_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9293_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9293_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9741_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9741_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9741_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9743_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9743_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9743_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9842_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9842_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9842_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_9904_d.json │ ├── BLDCmotor_FOC_R2017b_fixdt_9904_d.png │ ├── BLDCmotor_FOC_R2017b_fixdt_9904_d.svg │ ├── BLDCmotor_FOC_R2017b_fixdt_h_1.json │ └── BLDCmotor_FOC_R2017b_fixdt_m.json └── init_model.m /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | slprj/ 2 | -------------------------------------------------------------------------------- /01_Libraries/01_Controller/BLDC_controller_Lib.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/01_Libraries/01_Controller/BLDC_controller_Lib.slx -------------------------------------------------------------------------------- /01_Libraries/02_Plant/BLDC_model_sf.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/01_Libraries/02_Plant/BLDC_model_sf.mexw64 -------------------------------------------------------------------------------- /01_Libraries/02_Plant/BLDCmotorControl_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/01_Libraries/02_Plant/BLDCmotorControl_data.mat -------------------------------------------------------------------------------- /01_Libraries/02_Plant/PWM_generator_sf.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/01_Libraries/02_Plant/PWM_generator_sf.mexw64 -------------------------------------------------------------------------------- /02_Figures/FOC_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/02_Figures/FOC_algorithm.png -------------------------------------------------------------------------------- /02_Figures/FW_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/02_Figures/FW_architecture.png -------------------------------------------------------------------------------- /02_Figures/control_methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/02_Figures/control_methods.png -------------------------------------------------------------------------------- /02_Figures/firmware_architecture.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/02_Figures/firmware_architecture.pptx -------------------------------------------------------------------------------- /02_Figures/paramTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/02_Figures/paramTable.png -------------------------------------------------------------------------------- /03_CreateParamTable/create_tableParamType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/03_CreateParamTable/create_tableParamType.m -------------------------------------------------------------------------------- /03_CreateParamTable/setBlockSetting.m: -------------------------------------------------------------------------------- 1 | function setBlockSetting(topLevelModel,block,setting,value) 2 | % This function changes a certain setting for a specific type of blocks found within the main model 3 | % ============================================================ 4 | % Example 5 | % setBlockSetting(bdroot, 'Inport', 'BackgroundColor', 'cyan'); 6 | % setBlockSetting(bdroot, 'Outport', 'BackgroundColor', 'orange'); 7 | % ============================================================ 8 | 9 | % Load Top Model 10 | if( ~bdIsLoaded( topLevelModel ) ) 11 | load_system( topLevelModel ); % If Model is not already loaded, load it 12 | end 13 | 14 | 15 | %% Find Model Reference Blocks in the top level model: 16 | topLevelModelHandle = get_param( topLevelModel , 'Handle' ); 17 | blkHandles = find_system( topLevelModelHandle, 'findall', 'on', 'FollowLinks', 'off', 'LookUnderMasks', 'on', 'blocktype', block); 18 | 19 | if( ~isempty( blkHandles ) ) % If the model contains model references 20 | 21 | for k = 1 : length(blkHandles) 22 | set_param(blkHandles(k), setting, value); 23 | end 24 | 25 | end 26 | 27 | disp('---- Setting done ----'); -------------------------------------------------------------------------------- /03_CreateParamTable/tableParamType.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/03_CreateParamTable/tableParamType.xlsx -------------------------------------------------------------------------------- /04_Literature/[0] STM32F PMSM single-dual FOC SDK v4.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[0] STM32F PMSM single-dual FOC SDK v4.3.pdf -------------------------------------------------------------------------------- /04_Literature/[1] 8-Microchip AN1078 - Sensorless Field Oriented Control of a PMSM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[1] 8-Microchip AN1078 - Sensorless Field Oriented Control of a PMSM.pdf -------------------------------------------------------------------------------- /04_Literature/[2] 8-Sensorless PMSM Field-Oriented Control.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[2] 8-Sensorless PMSM Field-Oriented Control.pdf -------------------------------------------------------------------------------- /04_Literature/[3] Texas_intrs - FOC introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[3] Texas_intrs - FOC introduction.pdf -------------------------------------------------------------------------------- /04_Literature/[4] Texas_intrs - Clarke and Park.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[4] Texas_intrs - Clarke and Park.pdf -------------------------------------------------------------------------------- /04_Literature/[5] FOC - Optimised space vector modulation for variable speed.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[5] FOC - Optimised space vector modulation for variable speed.pdf -------------------------------------------------------------------------------- /04_Literature/[6] Sensorless-FOCWithFlux-Weakening.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[6] Sensorless-FOCWithFlux-Weakening.pdf -------------------------------------------------------------------------------- /04_Literature/[7] Practical Field Weakening Current Vector Control.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/04_Literature/[7] Practical Field Weakening Current Vector Control.pdf -------------------------------------------------------------------------------- /99_RecycleBin/BLDC_controller_Lib_AccelerationBased.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/BLDC_controller_Lib_AccelerationBased.slx -------------------------------------------------------------------------------- /99_RecycleBin/BLDC_controller_Lib_CounterBased.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/BLDC_controller_Lib_CounterBased.slx -------------------------------------------------------------------------------- /99_RecycleBin/BLDCmotorControl_FOC_R2017b.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/BLDCmotorControl_FOC_R2017b.slx -------------------------------------------------------------------------------- /99_RecycleBin/BLDCmotorControl_FOC_R2017b_fixdt_Ffwd.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/BLDCmotorControl_FOC_R2017b_fixdt_Ffwd.slx -------------------------------------------------------------------------------- /99_RecycleBin/BLDCmotorControl_FOC_R2017b_fixdt_speedDeriv.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/BLDCmotorControl_FOC_R2017b_fixdt_speedDeriv.slx -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/Model_1_Initialization.m: -------------------------------------------------------------------------------- 1 | %% Copyright 2018 The MathWorks, Inc.%% 2 | clear all; 3 | bdclose all; 4 | clc; 5 | %% PMSM parameters 6 | Ld = 1.7e-3; 7 | Lq = 3.2e-3; 8 | Rs = 0.02; 9 | Lambda_m = 0.2205; 10 | Polepairs = 4; 11 | 12 | %% Controller parameters 13 | Iq_reference = 100; 14 | Id_reference = -50; 15 | Gain_P = 1; 16 | Gain_I = 1; 17 | 18 | -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/Model_1_PI_Gain_TestBench.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/Motor_Control_Model_Package/Model_1_PI_Gain_TestBench.slx -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/Model_2_Initialization.m: -------------------------------------------------------------------------------- 1 | %% Copyright 2018 The MathWorks, Inc.%% 2 | clear all; 3 | bdclose all; 4 | clc; 5 | %% PMSM parameters 6 | Ld = 1.7e-3; 7 | Lq = 3.2e-3; 8 | Rs = 0.02; 9 | Lambda_m = 0.2205; 10 | Polepairs = 4; 11 | 12 | %% Current Loop PI Controller parameters 13 | 14 | Gain_P = 7.74; 15 | Gain_I = 26.84; 16 | 17 | %% Speed Loop PI Controller Parameters 18 | Speed_Gain_P = 0.1; 19 | Speed_Gain_I = 0.1; 20 | 21 | 22 | -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/Model_2_SpeedClosedLoop.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/Motor_Control_Model_Package/Model_2_SpeedClosedLoop.slx -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/Model_3_Flux_Weakening_Control.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/Motor_Control_Model_Package/Model_3_Flux_Weakening_Control.slx -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 1. All models are built in MATLAB R2018b. Prior releases cannot open them. 2 | 2. Before running the model, please first run the corresponding initialization file. 3 | 3. The initial PI Gain set for model_1 is not satisfactory. We are going to use SDO to tune the gains. 4 | 4. Copyright 2018 The MathWorks, Inc. -------------------------------------------------------------------------------- /99_RecycleBin/Motor_Control_Model_Package/license.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018, The MathWorks, Inc. 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are met: 6 | 7 | * Redistributions of source code must retain the above copyright notice, this 8 | list of conditions and the following disclaimer. 9 | 10 | * Redistributions in binary form must reproduce the above copyright notice, 11 | this list of conditions and the following disclaimer in the documentation 12 | and/or other materials provided with the distribution. 13 | * In all cases, the software is, and all modifications and derivatives of the 14 | software shall be, licensed to you solely for use in conjunction with 15 | MathWorks products and service offerings. 16 | 17 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 20 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 21 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 23 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 24 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 25 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 | -------------------------------------------------------------------------------- /99_RecycleBin/init_model_Ffwd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/init_model_Ffwd.m -------------------------------------------------------------------------------- /99_RecycleBin/pe_electric_engine_dyno.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/99_RecycleBin/pe_electric_engine_dyno.slx -------------------------------------------------------------------------------- /BLDCmotor_FOC_R2017b_fixdt.slx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/BLDCmotor_FOC_R2017b_fixdt.slx -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |This file is used in Dojo's back/fwd button management.
43 | 44 | 45 | -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/images/dndCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dojo/resources/images/dndCopy.png -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/images/dndMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dojo/resources/images/dndMove.png -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/images/dndNoCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dojo/resources/images/dndNoCopy.png -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/images/dndNoMove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dojo/resources/images/dndNoMove.png -------------------------------------------------------------------------------- /docs/support/lib/webview/config.js: -------------------------------------------------------------------------------- 1 | var dojoConfig=function(){var a=window&&"file:"===window.location.protocol&&(0Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_ar.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_ar',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"حسنا","buttonCancel":"الغاء","buttonSave":"حفظ","itemClose":"اغلاق","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"جاري التحميل...","errorState":"عفوا، حدث خطأ","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_cs.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_cs',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Storno","buttonSave":"Uložit","itemClose":"Zavřít","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Probíhá načítání...","errorState":"Omlouváme se, došlo k chybě","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_da.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_da',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Annullér","buttonSave":"Gem","itemClose":"Luk","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Indlæser...","errorState":"Der er opstået en fejl","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_de.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_de',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Abbrechen","buttonSave":"Speichern","itemClose":"Schließen","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Wird geladen...","errorState":"Es ist ein Fehler aufgetreten.","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_en-gb.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_en-gb',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Cancel","buttonSave":"Save","itemClose":"Close","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Loading...","errorState":"Sorry, an error occurred","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_en-us.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_en-us',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Cancel","buttonSave":"Save","itemClose":"Close","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Loading...","errorState":"Sorry, an error occurred","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_fi-fi.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_fi-fi',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Peruuta","buttonSave":"Tallenna","itemClose":"Sulje","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Lataus on meneillään...","errorState":"On ilmennyt virhe.","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_fr-fr.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_fr-fr',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Annuler","buttonSave":"Enregistrer","itemClose":"Fermer","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Chargement...","errorState":"Une erreur est survenue","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_he-il.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_he-il',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"אישור","buttonCancel":"ביטול","buttonSave":"שמירה","itemClose":"סגירה","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"טעינה...","errorState":"אירעה שגיאה","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_hu.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_hu',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Mégse","buttonSave":"Mentés","itemClose":"Bezárás","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Betöltés...","errorState":"Sajnálom, hiba történt","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_it-it.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_it-it',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"Ok","buttonCancel":"Annulla","buttonSave":"Salva","itemClose":"Chiudi","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Caricamento in corso...","errorState":"Si è verificato un errore","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_ja-jp.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_ja-jp',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"新しいタブで開く","Open":"開く","NoExport":"このシステムはエクスポートされませんでした。","ModelBrowserButtonLabel":"モデル ブラウザーの非表示/表示","searchResults":"検索結果:","propertyName":"プロパティ名","ExplorerBarButtonLabel":"エクスプローラー バーの非表示/表示","advancedSearch":"詳細検索","ViewAll":"すべて表示","parent":"親","name":"名前","searchCurrentAndBelow":"現在の階層以下を検索...","propertyValue":"プロパティ値","FitToViewButtonLabel":"ビューに合わせる","maskType":"マスク タイプ","MarqueeZoomButtonLabel":"ズーム","blockType":"ブロック タイプ","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"新しいタブで開く","Open":"開く","Title":"モデル ブラウザー","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"キャンセル","buttonSave":"保存","itemClose":"閉じる","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"ロード中...","errorState":"エラーが発生しました。","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"コード生成","ParameterAttributes":"パラメーター属性","Documentation":"ドキュメンテーション","LoggingAndAccessibility":"ログとユーザー補助機能","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink の Web ビューは、ローカル ファイルのセキュリティ制限のため Google Chrome では表示できません。ローカル ファイルへのアクセスを可能にするには、以下を試してください。
ブラウザーが Scalable Vector Graphics をサポートしていません。次のいずれかのブラウザーを使用してみてください。
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_ko-kr.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_ko-kr',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"확인","buttonCancel":"취소","buttonSave":"저장","itemClose":"닫기","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"로드 중...","errorState":"죄송합니다. 오류가 발생했습니다.","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_nb.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_nb',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Avbryt","buttonSave":"Lagre","itemClose":"Lukk","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Laster inn...","errorState":"Det oppsto en feil","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_pl.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_pl',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Anuluj","buttonSave":"Zapisz","itemClose":"Zamknij","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Ładowanie...","errorState":"Niestety, wystąpił błąd","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_pt-br.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_pt-br',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Cancelar","buttonSave":"Salvar","itemClose":"Fechar","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Carregando...","errorState":"Desculpe, ocorreu um erro","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_ru.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_ru',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Отмена","buttonSave":"Сохранить","itemClose":"Закрыть","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Загрузка...","errorState":"Извините, возникла ошибка","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_sk.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_sk',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Zrušiť","buttonSave":"Uložiť","itemClose":"Zatvoriť","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Zavádza sa...","errorState":"Ľutujeme, ale vyskytla sa chyba","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_sl.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_sl',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"V redu","buttonCancel":"Prekliči","buttonSave":"Shrani","itemClose":"Zapri","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Nalaganje ...","errorState":"Oprostite, prišlo je do napake.","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_sv.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_sv',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"OK","buttonCancel":"Avbryt","buttonSave":"Spara","itemClose":"Stäng","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Läser in...","errorState":"Det har inträffat ett fel.","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_th.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_th',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"ตกลง","buttonCancel":"ยกเลิก","buttonSave":"บันทึก","itemClose":"ปิด","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"กำลังโหลด...","errorState":"ขออภัย เกิดข้อผิดพลาด","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_tr.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_tr',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"Tamam","buttonCancel":"İptal","buttonSave":"Kaydet","itemClose":"Kapat","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"Yükleniyor...","errorState":"Üzgünüz, bir hata oluştu","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_zh-cn.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_zh-cn',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"确定","buttonCancel":"取消","buttonSave":"保存","itemClose":"关闭","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"正在加载...","errorState":"对不起,发生了错误","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/nls/webview_zh-tw.js: -------------------------------------------------------------------------------- 1 | define('webview/nls/webview_zh-tw',{ 2 | 'webview/resources/slreportgen_webview/nls/modelviewer':{"OpenInNewTab":"Open In New Tab","Open":"Open","NoExport":"This system was not exported.","ModelBrowserButtonLabel":"Hide/Show Model Browser","searchResults":"Search Results:","propertyName":"Property Name","ExplorerBarButtonLabel":"Hide/Show Explorer Bar","advancedSearch":"Advanced Search","ViewAll":"View All","parent":"Parent","name":"Name","searchCurrentAndBelow":"Search current and below...","propertyValue":"Property Value","FitToViewButtonLabel":"Fit to View","maskType":"Mask Type","MarqueeZoomButtonLabel":"Zoom","blockType":"Block Type","_localized":{}} 3 | , 4 | 'webview/resources/slreportgen_webview/nls/modelbrowser':{"OpenInNewTab":"Open In New Tab","Open":"Open","Title":"Model Browser","_localized":{}} 5 | , 6 | 'dijit/nls/common':{"buttonOk":"確定","buttonCancel":"取消","buttonSave":"儲存","itemClose":"關閉","_localized":{}} 7 | , 8 | 'dijit/nls/loading':{"loadingState":"載入中...","errorState":"抱歉,發生錯誤","_localized":{}} 9 | , 10 | 'webview/resources/slreportgen_webview/nls/modelinspector':{"CodeGeneration":"Code Generation","ParameterAttributes":"Parameter Attributes","Documentation":"Documentation","LoggingAndAccessibility":"Logging and Accessibility","_localized":{}} 11 | , 12 | 'webview/resources/slreportgen_webview/nls/utils':{"ChromeLocalFileSupport":"Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:
Your browser does not support Scalable Vector Graphics. Try to use one of the following browser:
","_localized":{}} 13 | }); -------------------------------------------------------------------------------- /docs/support/lib/webview/palette/images/PaletteIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/webview/palette/images/PaletteIcons.png -------------------------------------------------------------------------------- /docs/support/lib/webview/palette/images/PaletteSeparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/webview/palette/images/PaletteSeparator.png -------------------------------------------------------------------------------- /docs/support/lib/webview/search/images/SearchIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/webview/search/images/SearchIcons.png -------------------------------------------------------------------------------- /docs/support/slwebview.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl":"support/slwebview_files", 3 | "homeHid":2, 4 | "initialElement":"", 5 | "sections":[ 6 | { 7 | "hid":1, 8 | "sid":"BLDCmotor_FOC_R2017b_fixdt", 9 | "name":"BLDCmotor_FOC_R2017b_fixdt", 10 | "fullname":"BLDCmotor_FOC_R2017b_fixdt", 11 | "label":"BLDCmotor_FOC_R2017b_fixdt", 12 | "parent":0, 13 | "descendants":[ 14 | 2, 15 | 3, 16 | 4, 17 | 5, 18 | 6, 19 | 7, 20 | 8, 21 | 9, 22 | 10, 23 | 11, 24 | 12, 25 | 13, 26 | 14, 27 | 15, 28 | 16, 29 | 17, 30 | 18, 31 | 19, 32 | 20, 33 | 21, 34 | 22, 35 | 23, 36 | 24, 37 | 25, 38 | 26, 39 | 27, 40 | 28, 41 | 29, 42 | 30, 43 | 31, 44 | 32, 45 | 33, 46 | 34, 47 | 35, 48 | 36, 49 | 37, 50 | 38, 51 | 39, 52 | 40, 53 | 41, 54 | 42, 55 | 43, 56 | 44, 57 | 45, 58 | 46, 59 | 47, 60 | 48, 61 | 49, 62 | 50, 63 | 51, 64 | 52, 65 | 53, 66 | 54, 67 | 55, 68 | 56, 69 | 57, 70 | 58, 71 | 59, 72 | 60, 73 | 61, 74 | 62, 75 | 63, 76 | 64, 77 | 65, 78 | 66, 79 | 67, 80 | 68, 81 | 69, 82 | 70, 83 | 71, 84 | 72, 85 | 73, 86 | 74, 87 | 75, 88 | 76, 89 | 77, 90 | 78, 91 | 79, 92 | 80, 93 | 81, 94 | 82, 95 | 83, 96 | 84, 97 | 85, 98 | 86, 99 | 87, 100 | 88, 101 | 89, 102 | 90, 103 | 91, 104 | 92, 105 | 93, 106 | 94, 107 | 95, 108 | 96, 109 | 97, 110 | 98, 111 | 99, 112 | 100, 113 | 101 114 | ], 115 | "hierarchyUrl":"support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_h_1.json", 116 | "backingUrl":"support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_m.json" 117 | } 118 | ], 119 | "optViews":[ 120 | ], 121 | "display":{ 122 | "informer":false 123 | }, 124 | "iconsUrl":"support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_29_icons.css" 125 | } -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_10035_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_10035_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_10066_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_10066_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_10364_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_10364_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11023_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11023_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11026_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11026_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11041_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11041_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11056_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11056_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11151_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11151_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11159_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11159_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11200_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11200_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11201_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11201_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11207_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11207_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11211_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11211_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11215_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11215_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11254_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11254_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11265_2342_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11265_2342_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11265_2395_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11265_2395_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11265_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11265_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11267_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11267_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11357_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11357_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11408_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11408_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11719_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11719_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11746_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11746_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11747_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11747_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11769_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11769_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2423_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2423_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2428_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2428_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2435_2515_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2435_2515_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2435_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2435_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2473_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2473_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2480_2515_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2480_2515_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2480_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2480_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2507_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_2507_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11784_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11815_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11815_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11884_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11884_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11895_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11895_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11900_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11900_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11930_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_11930_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12109_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12109_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12126_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12126_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12219_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12219_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12283_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12283_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12289_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12289_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12294_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12294_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12306_2877_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12306_2877_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12306_2895_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12306_2895_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12306_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12306_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12312_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12312_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12335_2877_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12335_2877_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12335_2895_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12335_2895_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12335_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12335_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12336_2877_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12336_2877_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12336_2895_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12336_2895_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12336_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12336_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12392_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12392_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12482_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12482_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12487_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12487_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_2779_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_2779_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_2791_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_2791_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_2816_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_2816_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12533_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12547_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12547_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_2779_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_2779_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_2791_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_2791_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_2816_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_2816_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12580_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12581_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12581_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12587_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12587_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_2779_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_2779_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_2791_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_2791_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_2816_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_2816_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12607_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12608_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12608_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12616_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12616_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12638_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_12638_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_29_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_29_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_29_icons.css: -------------------------------------------------------------------------------- 1 | .WebViewIcon0, 2 | .WebViewIcon1, 3 | .WebViewIcon2, 4 | .WebViewIcon3, 5 | .WebViewIcon4, 6 | .WebViewIcon5, 7 | .WebViewIcon6, 8 | .WebViewIcon7, 9 | .WebViewIcon8, 10 | .WebViewIcon9 { background-image: url('BLDCmotor_FOC_R2017b_fixdt_29_icons.png'); width: 16px; height: 16px; } 11 | 12 | .WebViewIcon0 { background-position: -0px; } 13 | .WebViewIcon1 { background-position: -16px; } 14 | .WebViewIcon2 { background-position: -32px; } 15 | .WebViewIcon3 { background-position: -48px; } 16 | .WebViewIcon4 { background-position: -64px; } 17 | .WebViewIcon5 { background-position: -80px; } 18 | .WebViewIcon6 { background-position: -96px; } 19 | .WebViewIcon7 { background-position: -112px; } 20 | .WebViewIcon8 { background-position: -128px; } 21 | .WebViewIcon9 { background-position: -144px; } 22 | -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_29_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_29_icons.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8220_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8220_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8225_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8225_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8235_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8235_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8247_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8247_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8263_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8263_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8272_2515_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8272_2515_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8272_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8272_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8314_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8314_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8384_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8384_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8469_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8469_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8658_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8658_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8726_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8726_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8738_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8738_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8743_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8743_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8913_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_8913_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9045_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9045_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9198_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9198_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9292_d.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9292_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9292_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9292_d.svg: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9293_d.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9293_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9293_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9293_d.svg: -------------------------------------------------------------------------------- 1 | 2 | 15 | -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9741_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9741_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9743_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9743_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9842_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9842_d.png -------------------------------------------------------------------------------- /docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9904_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/slwebview_files/BLDCmotor_FOC_R2017b_fixdt_9904_d.png -------------------------------------------------------------------------------- /init_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/init_model.m --------------------------------------------------------------------------------