├── .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 | Simulink Web View - Created by Simulink Report Generator 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | -------------------------------------------------------------------------------- /docs/stylesheets/combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/stylesheets/combined.css -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/TouchScroll.css: -------------------------------------------------------------------------------- 1 | .touchscroll-x, .touchscroll-y {display: none; overflow: hidden; position: absolute; opacity: 0.7;}.touchscroll-fadeout .touchscroll-x, .touchscroll-fadeout .touchscroll-y {opacity: 0; -webkit-transition: opacity 0.3s ease-out 0.1s; -moz-transition: opacity 0.3s ease-out 0.1s; -o-transition: opacity 0.3s ease-out 0.1s; transition: opacity 0.3s ease-out 0.1s;}.touchscroll-bar {background-color: rgba(88,88,88,0.97); border: 1px solid rgba(88,88,88,1); border-radius: 3px; -webkit-box-shadow: 0 0 1px rgba(88,88,88,0.4);}.touchscroll-x {left: 1px; right: 3px; bottom: 1px; height: 5px;}.touchscroll-y {top: 1px; bottom: 3px; right: 1px; width: 5px;}.touchscroll-scrollable-x .touchscroll-x, .touchscroll-scrollable-y .touchscroll-y {display: block;}.touchscroll-bar {-webkit-transition: transform cubic-bezier(0.33, 0.66, 0.66, 1); -moz-transition: transform cubic-bezier(0.33, 0.66, 0.66, 1); -o-transition: transform cubic-bezier(0.33, 0.66, 0.66, 1); transition: transform cubic-bezier(0.33, 0.66, 0.66, 1);}#dgrid-css-TouchScroll-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/columnset.css: -------------------------------------------------------------------------------- 1 | .dgrid-column-set {overflow: hidden; width: 100%; position: relative; height: 100%;}.dgrid-column-set-cell {vertical-align: top; height: 100%;}.dgrid-column-set-scroller-container {font-size: 0; position: absolute; bottom: 0;}.dgrid-autoheight .dgrid-column-set-scroller-container {position: relative;}.dgrid-column-set-scroller {display: inline-block; overflow-x: auto; overflow-y: hidden;}.dgrid-column-set-scroller-content {height: 1px;}html.has-mozilla .dgrid-column-set *:focus, html.has-safari .dgrid-column-set *:focus {border: 1px dotted black; outline: 1px dotted black;}html.has-ie-7 .dgrid-column-set {width: auto;}html.has-quirks .dgrid-column-set {width: 100%;}#dgrid-css-columnset-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/dgrid_rtl.css: -------------------------------------------------------------------------------- 1 | .dgrid-rtl-swap .dgrid-header-row {right: 0; left: 17px;}.dgrid-rtl-swap .dgrid-header-scroll {left: 0px; right: auto;}.dgrid-rtl .dgrid-cell {text-align: right;}.dgrid-rtl .dgrid-sort-arrow {float: left; margin: 0 5px 0 4px;}.dgrid-rtl .ui-icon-triangle-1-e {background-position: -96px -16px;}.dgrid-rtl .ui-icon-triangle-1-se {background-position: -80px -16px;}.dgrid-rtl .dgrid-pagination .dgrid-status {float: right;}.dgrid-rtl .dgrid-pagination .dgrid-page-size {float: right;}.dgrid-rtl .dgrid-pagination .dgrid-navigation {float: left;}.dgrid-rtl.dgrid-autoheight .dgrid-header {left: 0;}.has-ie-6 .dgrid-rtl .dgrid-header-row {left: auto; right: auto;}#dgrid-css-dgrid_rtl-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/extensions/ColumnHider.css: -------------------------------------------------------------------------------- 1 | .dgrid-hider-toggle {background-position: 0 -192px; background-color: transparent; border: none; cursor: pointer; position: absolute; right: 0; top: 0;}.dgrid-rtl-swap .dgrid-hider-toggle {right: auto; left: 0;}.dgrid-hider-menu {position: absolute; top: 0; right: 17px; width: 184px; background-color: #fff; border: 1px solid black; z-index: 99999; padding: 4px; overflow-x: hidden; overflow-y: auto;}.dgrid-rtl-swap .dgrid-hider-menu {right: auto; left: 17px;}.dgrid-hider-menu-row {position: relative; padding: 2px;}.dgrid-hider-menu-check {position: absolute; top: 2px; left: 2px; padding: 0;}.dgrid-hider-menu-label {display: block; padding-left: 20px;}html.has-quirks .dgrid-hider-menu-check,html.has-ie-6-7 .dgrid-hider-menu-check {top: 0; left: 0;}#dgrid-css-extensions-ColumnHider-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/extensions/ColumnReorder.css: -------------------------------------------------------------------------------- 1 | .dgrid-header .dojoDndContainer .dgrid-cell {display: table-cell;}.dgrid-header .dojoDndItemBefore {border-left: 2px dotted #000 !important;}.dgrid-header .dojoDndItemAfter {border-right: 2px dotted #000 !important;}#dgrid-css-extensions-ColumnReorder-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/extensions/ColumnResizer.css: -------------------------------------------------------------------------------- 1 | .dgrid-column-resizer {cursor: col-resize; position: absolute; width: 2px; background-color: #666; z-index: 1000;}.dgrid-resize-guard {cursor: col-resize; position: absolute; bottom: 0; left: 0; right: 0; top: 0;}.dgrid-resize-handle {height: 100px; width: 0; position: absolute; right: -4px; top:-4px; cursor: col-resize; z-index: 999; border-left: 5px solid transparent; outline: none;}html.has-ie-6 .dgrid-resize-handle {border-color: pink; filter: chroma(color=pink);}html.has-mozilla .dgrid .dgrid-resize-handle:focus,html.has-opera .dgrid .dgrid-resize-handle:focus {outline: none;}.dgrid-resize-header-container {height:100%;}html.has-touch .dgrid-resize-handle {border-left: 20px solid transparent;}html.has-touch .dgrid-column-resizer {width: 2px;}html.has-no-quirks .dgrid-resize-header-container {position: relative;}html.has-ie-6 .dgrid-resize-header-container {position: static;}.dgrid-header .dgrid-cell-padding {overflow: hidden;}html.has-ie-6 .dgrid-header .dgrid-cell-padding {margin-right: 4px;}html.has-ie-6 .dgrid-header .dgrid-sort-arrow {margin-right: 0;}html.has-quirks .dgrid-header .dgrid-cell-padding, html.has-ie-6 .dgrid-header .dgrid-cell {position:relative;}#dgrid-css-extensions-ColumnResizer-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/extensions/CompoundColumns.css: -------------------------------------------------------------------------------- 1 | .dgrid-spacer-row {height: 0;}.dgrid-spacer-row th {padding-top: 0; padding-bottom: 0; border-top: none; border-bottom: none;}#dgrid-css-extensions-CompoundColumns-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/extensions/Pagination.css: -------------------------------------------------------------------------------- 1 | .dgrid-status {padding: 2px;}.dgrid-pagination .dgrid-status {float: left;}.dgrid-pagination .dgrid-navigation, .dgrid-pagination .dgrid-page-size {float: right;}.dgrid-navigation .dgrid-page-link {cursor: pointer; font-weight: bold; text-decoration: none; color: inherit; padding: 0 4px;}.dgrid-first, .dgrid-last, .dgrid-next, .dgrid-previous {font-size: 130%;}.dgrid-pagination .dgrid-page-disabled,.has-ie-6-7 .dgrid-navigation .dgrid-page-disabled,.has-ie.has-quirks .dgrid-navigation .dgrid-page-disabled {color: #aaa; cursor: default;}.dgrid-page-input {margin-top: 1px; width: 2em; text-align: center;}.dgrid-page-size {margin: 1px 4px 0 4px;}#dgrid-css-extensions-Pagination-loaded {display: none;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dgrid/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dgrid/css/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/claro.css: -------------------------------------------------------------------------------- 1 | .claro .dgrid {border: 1px solid #aaa; background: #fff; color: #000;}.claro .dgrid-header {font-weight: bold;}.claro .dgrid-header,.claro .dgrid-footer {background: #ebf0f5; background: -moz-linear-gradient(top, #ebf0f5 0%, #d5e0ea 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebf0f5), color-stop(100%,#d5e0ea)); background: -webkit-linear-gradient(top, #ebf0f5 0%,#d5e0ea 100%); background: -o-linear-gradient(top, #ebf0f5 0%,#d5e0ea 100%); background: -ms-linear-gradient(top, #ebf0f5 0%,#d5e0ea 100%); background: linear-gradient(top, #ebf0f5 0%,#d5e0ea 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf0f5', endColorstr='#d5e0ea',GradientType=0 );}.claro .dgrid-header .dgrid-cell:hover {background: #ebf1f6; background: -moz-linear-gradient(top, #ffffff 0%, #d2e0eb 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d2e0eb)); background: -webkit-linear-gradient(top, #ffffff 0%,#d2e0eb 100%); background: -o-linear-gradient(top, #ffffff 0%,#d2e0eb 100%); background: -ms-linear-gradient(top, #ffffff 0%,#d2e0eb 100%); background: linear-gradient(top, #ffffff 0%,#d2e0eb 100%);}.claro .dgrid-row {-webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; transition-duration: 0.2s; -webkit-transition-property: background-color, border-color; -moz-transition-property: background-color, border-color; -o-transition-property: background-color, border-color; transition-property: background-color, border-color; background: url("images/row_back.png") #fff repeat-x;}.has-ie-6 .claro .dgrid-row {background-image: none;}.claro .dgrid-row:hover {background-color: #e9f2fe;}.claro .dgrid-selected {background-color: #cee6fa;}.claro .dgrid-selected:hover {background-color: #9bc6f2;}.claro .dgrid-highlight {background-color: #ff6;}.claro .dgrid-cell {border-color: #edc;}.claro .dgrid-header .dgrid-cell {border-color: #bbb;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/images/row_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dgrid/css/skins/images/row_back.png -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/nihilo.css: -------------------------------------------------------------------------------- 1 | .nihilo .dgrid {border-color: #bba;}.nihilo .dgrid-content {background: #fff; color: #000;}.nihilo .dgrid-header {background: #fff; border-bottom-color: #919191;}.nihilo .dgrid-footer {background: #fff; border-top: 1px solid #919191;}.nihilo .dgrid-header .dgrid-cell {border-right-color: #acab99;}.nihilo .dgrid-selected {background-color: #aec7e3;}.nihilo .dgrid-row:hover {background-color: #ffe284;}.nihilo .dgrid-highlight {background-color: #ff6;}.nihilo .dgrid-cell {border-color: #ddc;}.nihilo .dgrid-header .dgrid-cell {border-color: #bba;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/sage.css: -------------------------------------------------------------------------------- 1 | .sage .dgrid-content {border: none; background: #fff; color: #000; text-shadow: 0 1px 0 rgba(255,255,255,.9);}.sage .dgrid-header-row {border-bottom: none;}.sage .dgrid-header,.sage .dgrid-footer {color: #fff; background: #333; background: -moz-linear-gradient(top, #4e4e4e 0%, #555555 12%, #636363 25%, #505050 39%, #303030 49%, #000000 50%, #1c1c1c 60%, #292929 76%, #1e1e1e 91%, #141414 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e4e4e), color-stop(12%,#555555), color-stop(25%,#636363), color-stop(39%,#505050), color-stop(49%,#303030), color-stop(50%,#000000), color-stop(60%,#1c1c1c), color-stop(76%,#292929), color-stop(91%,#1e1e1e), color-stop(100%,#141414)); background: -webkit-linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); background: -o-linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); background: -ms-linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); background: linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e4e4e', endColorstr='#141414',GradientType=0 );}.sage .dgrid-header th {padding: 7px 3px; font-weight: bold; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,.9); border-color: #111; text-transform: uppercase;}.sage .dgrid-cell {border-color: #bbc581; border-top: none; border-right: none; border-left: none;}.sage .dgrid-row-odd {background: #f2f7e8;}.sage .dgrid-row:hover {background: #c5dca6; color: #333; text-shadow: 0 1px 0 rgba(255,255,255,.5);}.sage .dgrid-row {-webkit-transition-duration: 0.1s; -moz-transition-duration: 0.1s; transition-duration: 0.1s; -webkit-transition-property: background-color, border-color; -moz-transition-property: background-color, border-color; transition-property: background-color, border-color;}.sage .dgrid-selected,.sage .dgrid-selected:hover {background: #b3d18b; text-shadow: 0 1px 0 rgba(255,255,255,.6);}.sage .dgrid-highlight {background-color: #d5e8bd;}.sage .dgrid-sort-arrow {background-image: url("../images/ui-icons_ffffff_256x240.png");}.sage .dgrid-header .dojoDndItemBefore {border-left: 2px dotted #fff !important;}.sage .dgrid-header .dojoDndItemAfter {border-right: 2px dotted #fff !important;}.has-ie-6-7 .sage .dgrid-navigation a,.has-ie.has-quirks .sage .dgrid-navigation a {color: #fff;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/slate.css: -------------------------------------------------------------------------------- 1 | .slate .dgrid-content {background: #fff; color: #000; text-shadow: 0 1px 0 rgba(255,255,255,.9);}.slate .dgrid-header-row {border-bottom: none;}.slate .dgrid-header,.slate .dgrid-footer {color: #fff; background: #333; background: -moz-linear-gradient(top, #4e4e4e 0%, #555555 12%, #636363 25%, #505050 39%, #303030 49%, #000000 50%, #1c1c1c 60%, #292929 76%, #1e1e1e 91%, #141414 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e4e4e), color-stop(12%,#555555), color-stop(25%,#636363), color-stop(39%,#505050), color-stop(49%,#303030), color-stop(50%,#000000), color-stop(60%,#1c1c1c), color-stop(76%,#292929), color-stop(91%,#1e1e1e), color-stop(100%,#141414)); background: -webkit-linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); background: -o-linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); background: -ms-linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); background: linear-gradient(top, #4e4e4e 0%,#555555 12%,#636363 25%,#505050 39%,#303030 49%,#000000 50%,#1c1c1c 60%,#292929 76%,#1e1e1e 91%,#141414 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e4e4e', endColorstr='#141414',GradientType=0 );}.slate .dgrid-header th {padding: 7px 3px; font-weight: bold; color: #FFF; text-shadow: 0 -1px 0 rgba(0,0,0,.9); border-color: #111; text-transform: uppercase;}.slate .dgrid-row-odd {background-color: #f7f7f7;}.slate .dgrid-row:hover {background-color: #ddd;}.slate .dgrid-selected,.slate .dgrid-selected:hover {background-color: #555; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,.5);}.slate .dgrid-highlight {background-color: #999;}.slate .dgrid-sort-arrow {background-image: url("../images/ui-icons_ffffff_256x240.png");}.slate .dgrid-header .dojoDndItemBefore {border-left: 2px dotted #fff !important;}.slate .dgrid-header .dojoDndItemAfter {border-right: 2px dotted #fff !important;}.has-ie-6-7 .slate .dgrid-navigation a,.has-ie.has-quirks .slate .dgrid-navigation a {color: #fff;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/soria.css: -------------------------------------------------------------------------------- 1 | .soria .dgrid {border-color: #bba;}.soria .dgrid-content {background: #fff; color: #000;}.soria .dgrid-header,.soria .dgrid-footer {background: #f2f4fe; background: -moz-linear-gradient(top, #f2f4fe 0%, #d0dff5 50%, #c6d8f0 51%, #c2d5ef 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f4fe), color-stop(50%,#d0dff5), color-stop(51%,#c6d8f0), color-stop(100%,#c2d5ef)); background: -webkit-linear-gradient(top, #f2f4fe 0%,#d0dff5 50%,#c6d8f0 51%,#c2d5ef 100%); background: -o-linear-gradient(top, #f2f4fe 0%,#d0dff5 50%,#c6d8f0 51%,#c2d5ef 100%); background: -ms-linear-gradient(top, #f2f4fe 0%,#d0dff5 50%,#c6d8f0 51%,#c2d5ef 100%); background: linear-gradient(top, #f2f4fe 0%,#d0dff5 50%,#c6d8f0 51%,#c2d5ef 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f4fe', endColorstr='#c2d5ef',GradientType=0 );}.soria .dgrid-header th:hover {background: #d4deec; background: -moz-linear-gradient(top, #dae2ed 0%, #b2c7e8 49%, #a8c1eb 50%, #9ebaec 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dae2ed), color-stop(49%,#b2c7e8), color-stop(50%,#a8c1eb), color-stop(100%,#9ebaec)); background: -webkit-linear-gradient(top, #dae2ed 0%,#b2c7e8 49%,#a8c1eb 50%,#9ebaec 100%); background: -o-linear-gradient(top, #dae2ed 0%,#b2c7e8 49%,#a8c1eb 50%,#9ebaec 100%); background: -ms-linear-gradient(top, #dae2ed 0%,#b2c7e8 49%,#a8c1eb 50%,#9ebaec 100%); background: linear-gradient(top, #dae2ed 0%,#b2c7e8 49%,#a8c1eb 50%,#9ebaec 100%);}.soria .dgrid-selected {background-color: #aec7e3;}.soria .dgrid-row:hover {background-color: #60a1ea;}.soria .dgrid-highlight {background-color: #ff6;}.soria .dgrid-cell {border-color: #ddc;}.soria .dgrid-header .dgrid-cell {border-color: #bba;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/squid.css: -------------------------------------------------------------------------------- 1 | .squid .dgrid-content {border: 1px solid #555; background: #000; color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,.7);}.squid .ui-icon {background-image: url("../images/ui-icons_ffffff_256x240.png");}.squid .dgrid-header {padding: 0 1px;}.squid .dgrid-header,.squid .dgrid-footer {color: #fff; background: #2d1f14; background: -moz-linear-gradient(top, #140e09 0%, #2d1f14 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#140e09), color-stop(100%,#2d1f14)); background: -webkit-linear-gradient(top, #140e09 0%,#2d1f14 100%); background: -o-linear-gradient(top, #140e09 0%,#2d1f14 100%); background: -ms-linear-gradient(top, #140e09 0%,#2d1f14 100%); background: linear-gradient(top, #140e09 0%,#2d1f14 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#140e09', endColorstr='#2d1f14',GradientType=0 ); color: #fff; font-weight: bold;}.squid .dgrid-header:hover {background: #000; background: -moz-linear-gradient(top, #000000 0%, #2d1f14 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#2d1f14)); background: -webkit-linear-gradient(top, #000000 0%,#2d1f14 100%); background: -o-linear-gradient(top, #000000 0%,#2d1f14 100%); background: -ms-linear-gradient(top, #000000 0%,#2d1f14 100%); background: linear-gradient(top, #000000 0%,#2d1f14 100%);}.squid .dgrid-row {-webkit-transition-duration: 0.2s; -moz-transition-duration: 0.2s; transition-duration: 0.2s; -webkit-transition-property: background-color, border-color; -moz-transition-property: background-color, border-color; transition-property: background-color, border-color; background: url("images/row_back.png") #000 repeat-x;}.squid .dgrid-row:hover {background-color: #444;}.has-ie-6 .squid .dgrid-row {background-image: none;}.squid .dgrid-selected {background-color: #64390d; text-shadow: 0 -1px 0 rgba(0,0,0,.3);}.squid .dgrid-selected:hover {background-color: #8b6b4a;}.squid .dgrid-highlight {background-color: #666;}.squid .dgrid-cell {border-color: #ccc;}.squid .dgrid-header .dojoDndItemBefore {border-left: 2px dotted #fff !important;}.squid .dgrid-header .dojoDndItemAfter {border-right: 2px dotted #fff !important;}.has-ie-6-7 .squid .dgrid-navigation a,.has-ie.has-quirks .squid .dgrid-navigation a {color: #fff;} -------------------------------------------------------------------------------- /docs/support/lib/dgrid/css/skins/tundra.css: -------------------------------------------------------------------------------- 1 | .tundra .dgrid {border-color: #bba;}.tundra .dgrid-content {background: #fff; color: #000;}.tundra .dgrid-header, .tundra .dgrid-footer {background: #e8e8e8; background: -moz-linear-gradient(top, #ffffff 0%, #e8e8e8 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e8e8e8)); background: -webkit-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); background: -o-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); background: -ms-linear-gradient(top, #ffffff 0%,#e8e8e8 100%); background: linear-gradient(top, #ffffff 0%,#e8e8e8 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e8e8e8',GradientType=0 ); font-weight: bold;}.tundra .dgrid-header th:hover {background: #f6f6f6; background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#eeeeee)); background: -webkit-linear-gradient(top, #ffffff 0%,#eeeeee 100%); background: -o-linear-gradient(top, #ffffff 0%,#eeeeee 100%); background: -ms-linear-gradient(top, #ffffff 0%,#eeeeee 100%); background: linear-gradient(top, #ffffff 0%,#eeeeee 100%);}.tundra .dgrid-selected {background-color: #aec7e3;}.tundra .dgrid-row:hover {background-color: #60a1ea;}.tundra .dgrid-highlight {background-color: #ff6;}.tundra .dgrid-cell {border-color: #ddc;}.tundra .dgrid-header .dgrid-cell {border-color: #bba;} -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/commonIconsObjActDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/commonIconsObjActDisabled.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/commonIconsObjActDisabled_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/commonIconsObjActDisabled_rtl.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/commonIconsObjActEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/commonIconsObjActEnabled.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/commonIconsObjActEnabled8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/commonIconsObjActEnabled8bit.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/commonIconsObjActEnabled8bit_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/commonIconsObjActEnabled8bit_rtl.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/commonIconsObjActEnabled_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/commonIconsObjActEnabled_rtl.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/editorIconsDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/editorIconsDisabled.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/editorIconsDisabled_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/editorIconsDisabled_rtl.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/editorIconsEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/editorIconsEnabled.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/editorIconsEnabled_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/editorIconsEnabled_rtl.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/loadingAnimation.gif -------------------------------------------------------------------------------- /docs/support/lib/dijit/icons/images/loadingAnimation_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/icons/images/loadingAnimation_rtl.gif -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ar/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ar/common", ({ 3 | buttonOk: "حسنا", 4 | buttonCancel: "الغاء", 5 | buttonSave: "حفظ", 6 | itemClose: "اغلاق" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ar/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ar/loading", ({ 3 | loadingState: "جاري التحميل...", 4 | errorState: "عفوا، حدث خطأ" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/az/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/az/common", ({ 3 | "buttonOk" : "Ok", 4 | "buttonCancel" : "Ləğv et", 5 | "buttonSave" : "Saxla", 6 | "itemClose" : "Bağla" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/az/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/az/loading", ({ 3 | "loadingState" : "Yüklənir...", 4 | "errorState" : "Problem yarandı" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/bg/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/bg/common", ({ 3 | buttonOk: "ОК", 4 | buttonCancel: "Отмени", 5 | buttonSave: "Запази", 6 | itemClose: "Затвори" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/bg/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/bg/loading", ({ 3 | loadingState: "Зареждане...", 4 | errorState: "Съжаляваме, възникна грешка" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/bs/common.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/bs/common", { 2 | //begin v1.x content 3 | buttonOk: "OK", 4 | buttonCancel: "Odustani", 5 | buttonSave: "Spremi", 6 | itemClose: "Zatvori" 7 | //end v1.x content 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/bs/loading.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/bs/loading", { 2 | //begin v1.x content 3 | loadingState: "Učitavanje...", 4 | errorState: "Izvinite, došlo je do greške" 5 | //end v1.x content 6 | }); 7 | 8 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ca/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ca/common", ({ 3 | buttonOk: "D'acord", 4 | buttonCancel: "Cancel·la", 5 | buttonSave: "Desa", 6 | itemClose: "Tanca" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ca/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ca/loading", ({ 3 | loadingState: "S'està carregant...", 4 | errorState: "Ens sap greu. S'ha produït un error." 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/common.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/common", { root: 2 | //begin v1.x content 3 | ({ 4 | buttonOk: "OK", 5 | buttonCancel: "Cancel", 6 | buttonSave: "Save", 7 | itemClose: "Close" 8 | }) 9 | //end v1.x content 10 | , 11 | "bs": true, 12 | "mk": true, 13 | "sr": true, 14 | "zh": true, 15 | "zh-tw": true, 16 | "uk": true, 17 | "tr": true, 18 | "th": true, 19 | "sv": true, 20 | "sl": true, 21 | "sk": true, 22 | "ru": true, 23 | "ro": true, 24 | "pt": true, 25 | "pt-pt": true, 26 | "pl": true, 27 | "nl": true, 28 | "nb": true, 29 | "ko": true, 30 | "kk": true, 31 | "ja": true, 32 | "it": true, 33 | "id": true, 34 | "hu": true, 35 | "hr": true, 36 | "he": true, 37 | "fr": true, 38 | "fi": true, 39 | "eu": true, 40 | "es": true, 41 | "el": true, 42 | "de": true, 43 | "da": true, 44 | "cs": true, 45 | "ca": true, 46 | "bg": true, 47 | "az": true, 48 | "ar": true 49 | }); 50 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/cs/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/cs/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Storno", 5 | buttonSave: "Uložit", 6 | itemClose: "Zavřít" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/cs/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/cs/loading", ({ 3 | loadingState: "Probíhá načítání...", 4 | errorState: "Omlouváme se, došlo k chybě" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/da/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/da/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Annullér", 5 | buttonSave: "Gem", 6 | itemClose: "Luk" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/da/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/da/loading", ({ 3 | loadingState: "Indlæser...", 4 | errorState: "Der er opstået en fejl" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/de/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/de/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Abbrechen", 5 | buttonSave: "Speichern", 6 | itemClose: "Schließen" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/de/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/de/loading", ({ 3 | loadingState: "Wird geladen...", 4 | errorState: "Es ist ein Fehler aufgetreten." 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/el/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/el/common", ({ 3 | buttonOk: "ΟΚ", 4 | buttonCancel: "Ακύρωση", 5 | buttonSave: "Αποθήκευση", 6 | itemClose: "Κλείσιμο" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/el/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/el/loading", ({ 3 | loadingState: "Φόρτωση...", 4 | errorState: "Σας ζητούμε συγνώμη, παρουσιάστηκε σφάλμα" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/es/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/es/common", ({ 3 | buttonOk: "Aceptar", 4 | buttonCancel: "Cancelar", 5 | buttonSave: "Guardar", 6 | itemClose: "Cerrar" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/es/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/es/loading", ({ 3 | loadingState: "Cargando...", 4 | errorState: "Lo siento, se ha producido un error" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/eu/common.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/eu/common", { 2 | //begin v1.x content 3 | buttonOk: "Ados", 4 | buttonCancel: "Utzi", 5 | buttonSave: "Gorde", 6 | itemClose: "Itxi" 7 | //end v1.x content 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/eu/loading.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/eu/loading", { 2 | //begin v1.x content 3 | loadingState: "Kargatzen...", 4 | errorState: "Barkatu, errorea gertatu da" 5 | //end v1.x content 6 | }); 7 | 8 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/fi/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/fi/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Peruuta", 5 | buttonSave: "Tallenna", 6 | itemClose: "Sulje" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/fi/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/fi/loading", ({ 3 | loadingState: "Lataus on meneillään...", 4 | errorState: "On ilmennyt virhe." 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/fr/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/fr/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Annuler", 5 | buttonSave: "Enregistrer", 6 | itemClose: "Fermer" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/fr/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/fr/loading", ({ 3 | loadingState: "Chargement...", 4 | errorState: "Une erreur est survenue" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/he/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/he/common", ({ 3 | buttonOk: "אישור", 4 | buttonCancel: "ביטול", 5 | buttonSave: "שמירה", 6 | itemClose: "סגירה" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/he/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/he/loading", ({ 3 | loadingState: "טעינה...‏", 4 | errorState: "אירעה שגיאה" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/hr/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/hr/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Opoziv", 5 | buttonSave: "Spremi", 6 | itemClose: "Zatvori" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/hr/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/hr/loading", ({ 3 | loadingState: "Učitavanje...", 4 | errorState: "Žao nam je, došlo je do greške" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/hu/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/hu/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Mégse", 5 | buttonSave: "Mentés", 6 | itemClose: "Bezárás" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/hu/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/hu/loading", ({ 3 | loadingState: "Betöltés...", 4 | errorState: "Sajnálom, hiba történt" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/id/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/id/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Batal", 5 | buttonSave: "Simpan", 6 | itemClose: "Tutup" 7 | }) 8 | ); 9 | 10 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/id/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/id/loading", ({ 3 | loadingState: "Memuatkan...", 4 | errorState: "Maaf, terjadi kesalahan" 5 | }) 6 | ); 7 | 8 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/it/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/it/common", ({ 3 | buttonOk: "Ok", 4 | buttonCancel: "Annulla", 5 | buttonSave: "Salva", 6 | itemClose: "Chiudi" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/it/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/it/loading", ({ 3 | loadingState: "Caricamento in corso...", 4 | errorState: "Si è verificato un errore" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ja/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ja/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "キャンセル", 5 | buttonSave: "保存", 6 | itemClose: "閉じる" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ja/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ja/loading", ({ 3 | loadingState: "ロード中...", 4 | errorState: "エラーが発生しました。" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/kk/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/kk/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Болдырмау", 5 | buttonSave: "Сақтау", 6 | itemClose: "Жабу" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/kk/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/kk/loading", ({ 3 | loadingState: "Қотарылуда...", 4 | errorState: "Кешіріңіз, қате орын алды" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ko/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ko/common", ({ 3 | buttonOk: "확인", 4 | buttonCancel: "취소", 5 | buttonSave: "저장", 6 | itemClose: "닫기" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ko/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ko/loading", ({ 3 | loadingState: "로드 중...", 4 | errorState: "죄송합니다. 오류가 발생했습니다." 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/loading.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/loading", { root: 2 | //begin v1.x content 3 | ({ 4 | loadingState: "Loading...", 5 | errorState: "Sorry, an error occurred" 6 | }) 7 | //end v1.x content 8 | , 9 | "bs": true, 10 | "mk": true, 11 | "sr": true, 12 | "zh": true, 13 | "zh-tw": true, 14 | "uk": true, 15 | "tr": true, 16 | "th": true, 17 | "sv": true, 18 | "sl": true, 19 | "sk": true, 20 | "ru": true, 21 | "ro": true, 22 | "pt": true, 23 | "pt-pt": true, 24 | "pl": true, 25 | "nl": true, 26 | "nb": true, 27 | "ko": true, 28 | "kk": true, 29 | "ja": true, 30 | "it": true, 31 | "id": true, 32 | "hu": true, 33 | "hr": true, 34 | "he": true, 35 | "fr": true, 36 | "fi": true, 37 | "eu": true, 38 | "es": true, 39 | "el": true, 40 | "de": true, 41 | "da": true, 42 | "cs": true, 43 | "ca": true, 44 | "bg": true, 45 | "az": true, 46 | "ar": true 47 | }); 48 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/mk/common.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/mk/common", { 2 | //begin v1.x content 3 | buttonOk: "OK", 4 | buttonCancel: "Откажи", 5 | buttonSave: "Зачувај", 6 | itemClose: "Затвори" 7 | //end v1.x content 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/mk/loading.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/mk/loading", { 2 | //begin v1.x content 3 | loadingState: "Вчитување...", 4 | errorState: "Се појави грешка" 5 | //end v1.x content 6 | }); 7 | 8 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/nb/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/nb/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Avbryt", 5 | buttonSave: "Lagre", 6 | itemClose: "Lukk" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/nb/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/nb/loading", ({ 3 | loadingState: "Laster inn...", 4 | errorState: "Det oppsto en feil" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/nl/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/nl/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Annuleren", 5 | buttonSave: "Opslaan", 6 | itemClose: "Sluiten" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/nl/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/nl/loading", ({ 3 | loadingState: "Bezig met laden...", 4 | errorState: "Er is een fout opgetreden" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/pl/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/pl/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Anuluj", 5 | buttonSave: "Zapisz", 6 | itemClose: "Zamknij" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/pl/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/pl/loading", ({ 3 | loadingState: "Ładowanie...", 4 | errorState: "Niestety, wystąpił błąd" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/pt-pt/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/pt-pt/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Cancelar", 5 | buttonSave: "Guardar", 6 | itemClose: "Fechar" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/pt-pt/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/pt-pt/loading", ({ 3 | loadingState: "A carregar...", 4 | errorState: "Lamentamos, mas ocorreu um erro" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/pt/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/pt/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Cancelar", 5 | buttonSave: "Salvar", 6 | itemClose: "Fechar" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/pt/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/pt/loading", ({ 3 | loadingState: "Carregando...", 4 | errorState: "Desculpe, ocorreu um erro" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ro/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ro/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Anulare", 5 | buttonSave: "Salvare", 6 | itemClose: "Închidere" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ro/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ro/loading", ({ 3 | loadingState: "Încărcare...", 4 | errorState: "Ne pare rău, a apărut o eroare " 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ru/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ru/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Отмена", 5 | buttonSave: "Сохранить", 6 | itemClose: "Закрыть" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/ru/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/ru/loading", ({ 3 | loadingState: "Загрузка...", 4 | errorState: "Извините, возникла ошибка" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sk/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/sk/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Zrušiť", 5 | buttonSave: "Uložiť", 6 | itemClose: "Zatvoriť" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sk/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/sk/loading", ({ 3 | loadingState: "Zavádza sa...", 4 | errorState: "Ľutujeme, ale vyskytla sa chyba" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sl/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/sl/common", ({ 3 | buttonOk: "V redu", 4 | buttonCancel: "Prekliči", 5 | buttonSave: "Shrani", 6 | itemClose: "Zapri" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sl/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/sl/loading", ({ 3 | loadingState: "Nalaganje ...", 4 | errorState: "Oprostite, prišlo je do napake." 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sr/common.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/sr/common", { 2 | //begin v1.x content 3 | buttonOk: "U redu", 4 | buttonCancel: "Otkaži", 5 | buttonSave: "Sačuvaj", 6 | itemClose: "Zatvori" 7 | //end v1.x content 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sr/loading.js: -------------------------------------------------------------------------------- 1 | define("dijit/nls/sr/loading", { 2 | //begin v1.x content 3 | loadingState: "Učitavanje...", 4 | errorState: "Nažalost, došlo je do greške" 5 | //end v1.x content 6 | }); 7 | 8 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sv/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/sv/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Avbryt", 5 | buttonSave: "Spara", 6 | itemClose: "Stäng" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/sv/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/sv/loading", ({ 3 | loadingState: "Läser in...", 4 | errorState: "Det har inträffat ett fel." 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/th/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/th/common", ({ 3 | buttonOk: "ตกลง", 4 | buttonCancel: "ยกเลิก", 5 | buttonSave: "บันทึก", 6 | itemClose: "ปิด" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/th/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/th/loading", ({ 3 | loadingState: "กำลังโหลด...", 4 | errorState: "ขออภัย เกิดข้อผิดพลาด" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/tr/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/tr/common", ({ 3 | buttonOk: "Tamam", 4 | buttonCancel: "İptal", 5 | buttonSave: "Kaydet", 6 | itemClose: "Kapat" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/tr/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/tr/loading", ({ 3 | loadingState: "Yükleniyor...", 4 | errorState: "Üzgünüz, bir hata oluştu" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/uk/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/uk/common", ({ 3 | buttonOk: "OK", 4 | buttonCancel: "Скасувати", 5 | buttonSave: "Зберегти", 6 | itemClose: "Закрити" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/uk/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/uk/loading", ({ 3 | loadingState: "Завантаження...", 4 | errorState: "Сталася помилка" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/zh-tw/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/zh-tw/common", ({ 3 | buttonOk: "確定", 4 | buttonCancel: "取消", 5 | buttonSave: "儲存", 6 | itemClose: "關閉" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/zh-tw/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/zh-tw/loading", ({ 3 | loadingState: "載入中...", 4 | errorState: "抱歉,發生錯誤" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/zh/common.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/zh/common", ({ 3 | buttonOk: "确定", 4 | buttonCancel: "取消", 5 | buttonSave: "保存", 6 | itemClose: "关闭" 7 | }) 8 | ); 9 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/nls/zh/loading.js: -------------------------------------------------------------------------------- 1 | define( 2 | "dijit/nls/zh/loading", ({ 3 | loadingState: "正在加载...", 4 | errorState: "对不起,发生了错误" 5 | }) 6 | ); 7 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/buttonArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/buttonArrows.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/buttonDisabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/buttonDisabled.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/buttonDisabled.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 22 | 23 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/buttonEnabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/buttonEnabled.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/buttonEnabled.svg: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/checkboxAndRadioButtons_IE6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/checkboxAndRadioButtons_IE6.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/checkboxRadioButtonStates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/checkboxRadioButtonStates.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/commonFormArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/commonFormArrows.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/error.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/form/images/sliderThumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/form/images/sliderThumbs.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/activeGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/activeGradient.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/activeGradient.svg: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/calendar.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/calendarArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/calendarArrows.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/calendarArrows8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/calendarArrows8bit.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/checkmarkNoBorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/checkmarkNoBorder.gif -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/checkmarkNoBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/checkmarkNoBorder.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/dialogCloseIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/dialogCloseIcon.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/dialogCloseIcon8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/dialogCloseIcon8bit.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/dnd.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/loadingAnimation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/loadingAnimation.gif -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/progressBarAnim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/progressBarAnim.gif -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/progressBarFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/progressBarFull.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/spriteArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/spriteArrows.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/standardGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/standardGradient.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/standardGradient.svg: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/tooltip.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/tooltip8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/tooltip8bit.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/treeExpandImages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/treeExpandImages.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/images/treeExpandImages8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/images/treeExpandImages8bit.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabBottomSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabBottomSelected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabBottomSelected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabBottomUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabBottomUnselected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabBottomUnselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabClose.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabLeftSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabLeftSelected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabLeftSelected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabLeftUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabLeftUnselected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabLeftUnselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabNested.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabNested.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabRightSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabRightSelected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabRightSelected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabRightUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabRightUnselected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabRightUnselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabTopSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabTopSelected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabTopSelected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabTopUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dijit/themes/claro/layout/images/tabTopUnselected.png -------------------------------------------------------------------------------- /docs/support/lib/dijit/themes/claro/layout/images/tabTopUnselected.svg: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/LICENSE: -------------------------------------------------------------------------------- 1 | License Disclaimer: 2 | 3 | All contents of this directory are Copyright (c) the Dojo Foundation, with the 4 | following exceptions: 5 | ------------------------------------------------------------------------------- 6 | 7 | dojo.css: 8 | * parts Copyright (c) 2007, Yahoo! Inc. All rights reserved. 9 | Distributed under the terms of the BSD License 10 | 11 | The Program includes all or portions of the following software which was obtained under the terms and conditions of the BSD License. 12 | 13 | http://developer.yahoo.com/yui/license.html 14 | 15 | Copyright (c) 2007, Yahoo! Inc. 16 | All rights reserved. 17 | Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 18 | * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 19 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the 20 | documentation and/or other materials provided with the distribution. 21 | * Neither the name of Yahoo! Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without 22 | specific prior written permission of Yahoo! Inc. 23 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 24 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 25 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 26 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, 27 | OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 29 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 | -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EFeru/bldc-motor-control-FOC/67b601d3ce6146dc3e291f529c4e920ae994b317/docs/support/lib/dojo/resources/blank.gif -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/blank.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/dnd.css: -------------------------------------------------------------------------------- 1 | .dojoDndAvatar {font-size: 75%; color: black;}.dojoDndAvatarHeader td {padding-left: 20px; padding-right: 4px; height: 16px;}.dojoDndAvatarHeader {background: #ccc;}.dojoDndAvatarItem {background: #eee;}.dojoDndMove .dojoDndAvatarHeader {background-image: url(images/dndNoMove.png); background-repeat: no-repeat;}.dojoDndCopy .dojoDndAvatarHeader {background-image: url(images/dndNoCopy.png); background-repeat: no-repeat;}.dojoDndMove .dojoDndAvatarCanDrop .dojoDndAvatarHeader {background-image: url(images/dndMove.png); background-repeat: no-repeat;}.dojoDndCopy .dojoDndAvatarCanDrop .dojoDndAvatarHeader {background-image: url(images/dndCopy.png); background-repeat: no-repeat;}.dojoDndHandle {cursor: move;}.dojoDndIgnore {cursor: default;}.dj_a11y .dojoDndAvatar {font-size: 1em; font-weight:bold;}.dj_a11y .dojoDndAvatarHeader td {padding-left:2px !important;}.dj_a11y .dojoDndAvatarHeader td span {padding-right: 5px;} -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/dojo.css: -------------------------------------------------------------------------------- 1 | body, div, dl, dt, dd, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {margin: 0; padding: 0;}fieldset, img {border: 0 none;}address, caption, cite, code, dfn, th, var {font-style: normal; font-weight: normal;}caption, th {text-align: left;}q:before, q:after {content:"";}abbr, acronym {border:0;}body {font: 12px Myriad,Helvetica,Tahoma,Arial,clean,sans-serif; *font-size: 75%;}h1 {font-size: 1.5em; font-weight: normal; line-height: 1em; margin-top: 1em; margin-bottom:0;}h2 {font-size: 1.1667em; font-weight: bold; line-height: 1.286em; margin-top: 1.929em; margin-bottom:0.643em;}h3, h4, h5, h6 {font-size: 1em; font-weight: bold; line-height: 1.5em; margin-top: 1.5em; margin-bottom: 0;}p {font-size: 1em; margin-top: 1.5em; margin-bottom: 1.5em; line-height: 1.5em;}blockquote {font-size: 0.916em; margin-top: 3.272em; margin-bottom: 3.272em; line-height: 1.636em; padding: 1.636em; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc;}ol li, ul li {font-size: 1em; line-height: 1.5em; margin: 0;}pre, code {font-size:115%; *font-size:100%; font-family: Courier, "Courier New"; background-color: #efefef; border: 1px solid #ccc;}pre {border-width: 1px 0; padding: 1.5em;}table {font-size:100%;}.dojoTabular {border-collapse: collapse; border-spacing: 0; border: 1px solid #ccc; margin: 0 1.5em;}.dojoTabular th {text-align: center; font-weight: bold;}.dojoTabular thead,.dojoTabular tfoot {background-color: #efefef; border: 1px solid #ccc; border-width: 1px 0;}.dojoTabular th,.dojoTabular td {padding: 0.25em 0.5em;} -------------------------------------------------------------------------------- /docs/support/lib/dojo/resources/iframe_history.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 38 | 39 | 40 |

The Dojo Toolkit -- iframe_history.html

41 | 42 |

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&&(0Simulink Web View cannot be viewed in Google Chrome because of local file security restrictions. To allow local file access, try the following:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

Your 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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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 では表示できません。ローカル ファイルへのアクセスを可能にするには、以下を試してください。

Microsoft Windows

  1. [スタート] ボタンをクリックして、\"Chrome\" などのブラウザーの実行可能ファイルを検索します。
  2. 一致したブラウザー検索結果を右クリックして空白の領域にドラッグします。[ショートカットをここに作成] を選択します。
  3. 新しく作成されたショートカットを右クリックして [プロパティ] を選択します。
  4. [ショートカット] タブをクリックします。
  5. ターゲットのエディット ボックスで、\"--allow-file-access-from-files\" を引用符なしで追加します。
  6. [OK] をクリックしてプロパティ ダイアログ ボックスを閉じます。
  7. ブラウザーが実行されていないことを確認します。
  8. 新しく作成されたショートカットをダブルクリックしてブラウザーを起動します。

Mac

  1. Terminal.app を実行します。
  2. \"open /Applications Google Chrome.app --allow-file-access-from-files\" を引用符なしで入力します。

Linux

  1. ターミナルを起動します。
  2. \"./chromium-browser --allow-file-access-from-files\" を引用符なしで入力します。
","UnsupportedBrowser":"サポートされていないブラウザー","SvgSupport":"

SVG サポートが必要

ブラウザーが 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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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:

Microsoft Windows

  1. Click the Start button and search for the browser executable, such as \"Chrome\".
  2. Right-click and drag the matched browser search result to an open area. Select Create shortcuts here.
  3. Right-click the newly created shortcut and select Properties.
  4. Click the Shortcut tab.
  5. In the target edit box, append \"--allow-file-access-from-files\", with no quotes.
  6. Click OK to dismiss property dialog box.
  7. Verify that the browser is no longer running.
  8. Double-click on the newly created shortcut to start the browser.

Mac

  1. Run Terminal.app.
  2. Type \"open /Applications Google Chrome.app --allow-file-access-from-files\", with no quotes.

Linux

  1. Start terminal.
  2. Type \"./chromium-browser --allow-file-access-from-files\", with no quotes.
","UnsupportedBrowser":"Unsupported Browser","SvgSupport":"

SVG Support Required

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 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 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 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 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 --------------------------------------------------------------------------------