Basic Scicoslab and Scicos

Total Page:16

File Type:pdf, Size:1020Kb

Basic Scicoslab and Scicos Florence University, October 2010 Basic ScicosLab and Scicos ScicosLab/Scicos for dummies like us Simone Mannori – ScicosLab/Scicos developer 1 Florence University, October 2010 Basic ScicosLab and Scicos Digital control systems design and simulation: the Bermuda Triangle for engineers Computer science Control systems Physics Simone Mannori – ScicosLab/Scicos developer 2 Florence University, October 2010 Basic ScicosLab and Scicos What ScicosLab is? An interpreted language (“Scilab Language”, very similar _but_not_equal_ to Matlab) Full support for matrix computation (BLAS, LAPACK, single and multi cores support using ACML now, GPU support in the near future using OpenCL). Basic programming (just like Matlab) GUI development (using TCL/TK and UICONTROL) Linear algebra Polynomial calculation Control systems modelling and design (continuous, discrete and hybrid systems) Robust control toolbox Optimization and simulation (build-in solvers) Signal processing (filters design, etc.) ARMA modelling and simulation Basic statistics Basic identification PVM support TCL/TK and Java support Max-plus algebra toolbox Simone Mannori – ScicosLab/Scicos developer 3 Florence University, October 2010 Basic ScicosLab and Scicos What you can do with ScicosLab? • Interact with the command line • Write a program, one line at time, using the internal or with an external editor • Run the program in an user friendly interpreted environment (easy debug) • Use the rich embedded library. • You can develop your ScicosLab functions using C, Fortran, Java, etc. • Produce nice graphics diagrams. Simone Mannori – ScicosLab/Scicos developer 4 Florence University, October 2010 Basic ScicosLab and Scicos What Scicos is? Scicos is a graphical dynamical system modeller and simulator developed inside the METALAU project at INRIA, Paris Rocquencourt centre. Scicos is a graphics, object oriented tool where the user create block diagrams to model and simulate the dynamics (time domain) of hybrid dynamical systems and compile models into executable code (code generation for simulation and embedded applications). Scicos is used for signal processing, systems control, queuing systems, and to study physical and biological systems. New extensions allow generation of component based modelling of electrical and hydraulic circuits using the Modelica language. Simone Mannori – ScicosLab/Scicos developer 5 Florence University, October 2010 Basic ScicosLab and Scicos What you can do with Scicos? Graphically model, compile, and simulate dynamical systems Combine continuous and discrete-time behaviours in the same model Select model elements from “Palettes” of standard blocks Program new blocks in C, Fortran, or Scilab Language Run simulations in batch mode from ScicosLab command line Generate C code from Scicos model using the built in Code Generator Generate C/C++ libraries ready to be integrated in Kepler using FC2K Run simulations in real time with and real devices using Scicos-HIL Generate hard real-time control executables with Scicos-RTAI, Scicos-FLEX and Scicos-ITM code generators. Use implicit blocks developed in the Modelica language. Discover new Scicos capability using additional toolboxes like RTSS, Scicos-HDL, Coselica, etc. Simone Mannori – ScicosLab/Scicos developer 6 Florence University, October 2010 ScicosLab Basic ScicosLab and Scicos Simone Mannori – ScicosLab/Scicos developer 7 Florence University, October 2010 Basic ScicosLab and Scicos Modelling of complex dynamical systems ScicosLab and Scicos are designed to handle explicit (ODE, Ordinary Differential Equation) or implicit (IDA, Implicit Differential Algebraic equation) differential equation problem (in the continuous domain) and difference equation (in the discrete domain). ScicosLab and Scicos can handle also partial differential equation (PDE) and finite element problem, but the user must develop some code to implement features like meshing (not built in ScicosLab). Simone Mannori – ScicosLab/Scicos developer 8 Florence University, October 2010 Basic ScicosLab and Scicos Continuous systems Linear controller for a floating apple. Simone Mannori – ScicosLab/Scicos developer 9 Florence University, October 2010 Basic ScicosLab and Scicos Discrete systems Same diagram, but realized with (time) discrete blocks. Simone Mannori – ScicosLab/Scicos developer 10 Florence University, October 2010 Basic ScicosLab and Scicos Hybrid systems Welcome to the Real World: continuous system, discrete controller. Simone Mannori – ScicosLab/Scicos developer 11 Florence University, October 2010 Basic ScicosLab and Scicos Implicit model: an easy example. Consider the basic LR circuits show below. You would like to control the current “i(t)” that flows inside the inductance using “vu(t)” (the voltage source that drive the coil). “lr_cc_modelica_r1.cos” Simone Mannori – ScicosLab/Scicos developer 12 Florence University, October 2010 Basic ScicosLab and Scicos Basic modelling The equations are: d v t =R⋅it t u dt =L⋅i d d d v t=R⋅itL it it Lt v t=R⋅itL it u dt dt u dt N 2 A = = d L=⋅K⋅ <material> K f l Nagaoka l Simone Mannori – ScicosLab/Scicos developer 13 Florence University, October 2010 Basic ScicosLab and Scicos Root locus and Bode plots with ScicosLab Simone Mannori – ScicosLab/Scicos developer 14 Florence University, October 2010 Basic ScicosLab and Scicos Root locus and Bode plots with ScicosLab PLANT PLANT + CONTROLLER Simone Mannori – ScicosLab/Scicos developer 15 Florence University, October 2010 Basic ScicosLab and Scicos Why do you need control systems? Control technology was born in order to improve the performances of the “PLANT”, e.g. the system that makes the work. Examples: - furnace (temperature control) - audio amplifier (distortion, bandwidth) - motion control (precision, speed) - AAA (Anti Aircraft Artillery) - Flight control (efficiency, comfort, performances) - Combustion engine (efficiency, emission's reduction) Simone Mannori – ScicosLab/Scicos developer 16 Florence University, October 2010 Basic ScicosLab and Scicos Continuous systems Simone Mannori – ScicosLab/Scicos developer 17 Florence University, October 2010 Basic ScicosLab and Scicos Linear, continuous and time invariant systems Continuous: all the internal and external signals are “proper” time functions. They are unequivocally defined for all values of “t”. Linear: if u1, u2 are two inputs and y1 and y2 are the two corresponding outputs, the input u = u1 + u2, produces the output y = y1+ y2 Time invariant: the response of the systems does not vary in time (system parameters are time invariant, no “ageing effect”). LTI continuous systems: the Paradise Simone Mannori – ScicosLab/Scicos developer 18 Florence University, October 2010 Basic ScicosLab and Scicos Control system means feedback NO FEEDBACK : open loop system Input Output PLANT Simone Mannori – ScicosLab/Scicos developer 19 Florence University, October 2010 Basic ScicosLab and Scicos Control system means feedback: standard config. Input Output Controller in the PLANT “feedback” path Controller Controller in the “direct” path Error Output Input Controller PLANT Simone Mannori – ScicosLab/Scicos developer 20 Florence University, October 2010 Basic ScicosLab and Scicos Example of feedback system: the floating apple I have an apple at y(0)=y0=1.0m. At t=0 I drop the apple, and the apple falls down. I'm not satisfied: I'd like to see the apple floating at a reference height (ref=0.5m). I need a controller to implement a closed loop feedback system. To design a controller you need: - a theory : Newton's gravity law - a model of the “PLANT” Simone Mannori – ScicosLab/Scicos developer 21 Florence University, October 2010 Basic ScicosLab and Scicos Open Loop “PLANT” model The “PLANT” : a free falling apple m m F=G a T r2 F = mT =− / 2 F=m a a= a G ; g 9.81m s m a r2 = ∫ = ∫ v t v0 a t dt y t y0 v t dt 1 yt= y g t 2 0 2 Simone Mannori – ScicosLab/Scicos developer 22 Florence University, October 2010 Basic ScicosLab and Scicos Open loop PLANT model: Scicos simulation = ∫ v t v0 a t dt = ∫ y t y0 v t dt Open loop simulation of the free falling apple. “apple_ff_01.cos” Simone Mannori – ScicosLab/Scicos developer 23 Florence University, October 2010 Basic ScicosLab and Scicos Example: the floating apple First “instinctive” trial-and-error controller (P only) This controller does not work. “apple_c_01.cos” Simone Mannori – ScicosLab/Scicos developer 24 Florence University, October 2010 Basic ScicosLab and Scicos Example: the floating apple Hint: you need to introduce an additional term producing “artificial friction”. It works ! “apple_c_02.cos” Simone Mannori – ScicosLab/Scicos developer 25 Florence University, October 2010 Basic ScicosLab and Scicos Example: the floating apple Conclusions and observations: “intuitive” design (no theory) may produce catastrophic results The ubiquitous PID controller may be able to solve most of the common situations. Not every PLANT can be stabilized using a simple PID In order to design a suitable controller we need a specific theory Simone Mannori – ScicosLab/Scicos developer 26 Florence University, October 2010 Basic ScicosLab and Scicos Basic tool for continuous system: the Laplace transform Solving with “paper and pencil” differential equations is too difficult: we need a better tool. Laplace transform a differential equation problem in a polynomial problem F(s) is a complex function of complex variable Simone Mannori – ScicosLab/Scicos developer 27 Florence University, October 2010 Basic ScicosLab and Scicos
Recommended publications
  • RTAI-Lab Tutorial: Scicoslab, Comedi, and Real-Time Control
    RTAI-Lab tutorial: Scicoslab, Comedi, and real-time control Roberto Bucher 1 Simone Mannori Thomas Netter 2 May 24, 2010 Summary RTAI-Lab is a tool chain for real-time software and control system development. This tutorial shows how to install the various components: the RTAI real-time Linux kernel, the Comedi interface for control and measurement hardware, the Scicoslab GUI-based CACSD modeling software and associated RTAI-Lab blocks, and the xrtailab interactive oscilloscope. RTAI-Lab’s Scicos blocks are detailed and examples show how to develop elementary block diagrams, automatically generate real-time executables, and add custom elements. 1Main RTAI-Lab developer, person to contact for technical questions: roberto.bucher at supsi.ch, see page 46 Contents 1 Introduction 4 1.1 RTAI-Lab tool chain . .4 1.2 Commercial software . .4 2 Installation 5 2.1 Requirements . .5 2.1.1 Hardware requirements . .5 2.1.2 Software requirements . .6 2.2 Mesa library . .7 2.3 EFLTK library . .7 2.4 Linux kernel and RTAI patch . .7 2.5 Comedilib . .8 2.6 RTAI (1st pass) . .8 2.7 RTAI tests . .9 2.8 Comedi . .9 2.9 RTAI (2nd pass) . 10 2.10 ScicosLab . 11 2.11 RTAI-Lab add-ons to Scicoslab-4.4 . 11 2.12 User configuration for scicoslab-4.4 . 11 2.13 Load the modules . 11 3 Development with RTAI-Lab 13 3.1 Boot Linux-RTAI . 13 3.2 Start Scicos . 13 3.3 RTAI-Lib palette . 14 3.4 Real-time sinewave: step by step . 16 3.4.1 Create block diagram .
    [Show full text]
  • Máster Universitario En Investigación En Inteligencia Artificial
    Identificador : 4311243 IMPRESO SOLICITUD PARA MODIFICACIÓN DE TÍTULOS OFICIALES 1. DATOS DE LA UNIVERSIDAD, CENTRO Y TÍTULO QUE PRESENTA LA SOLICITUD De conformidad con el Real Decreto 1393/2007, por el que se establece la ordenación de las Enseñanzas Universitarias Oficiales UNIVERSIDAD SOLICITANTE CENTRO CÓDIGO CENTRO Universidad Nacional de Educación a Distancia Escuela Técnica Superior de Ingeniería 28050756 Informática NIVEL DENOMINACIÓN CORTA Máster Investigación en Inteligencia Artificial DENOMINACIÓN ESPECÍFICA Máster Universitario en Investigación en Inteligencia Artificial por la Universidad Nacional de Educación a Distancia RAMA DE CONOCIMIENTO CONJUNTO Ingeniería y Arquitectura No HABILITA PARA EL EJERCICIO DE PROFESIONES NORMA HABILITACIÓN REGULADAS No SOLICITANTE NOMBRE Y APELLIDOS CARGO EMILIO LETÓN MOLINA Coordinador del Máster en Investigación en Inteligencia Artificial Tipo Documento Número Documento NIF REPRESENTANTE LEGAL NOMBRE Y APELLIDOS CARGO ALEJANDRO TIANA FERRER Rector Tipo Documento Número Documento NIF RESPONSABLE DEL TÍTULO NOMBRE Y APELLIDOS CARGO RAFAEL MARTINEZ TOMAS Director de la Escuela Técnica Superior de Ingeniería Informática de la Universidad Nacional de Educación a Distancia Tipo Documento Número Documento NIF 2. DIRECCIÓN A EFECTOS DE NOTIFICACIÓN A los efectos de la práctica de la NOTIFICACIÓN de todos los procedimientos relativos a la presente solicitud, las comunicaciones se dirigirán a la dirección que figure en el presente apartado. DOMICILIO CÓDIGO POSTAL MUNICIPIO TELÉFONO Bravo Murillo, 38 28015 Madrid E-MAIL PROVINCIA FAX Madrid 1 / 66 Verificable en https://sede.educacion.gob.es/cid y Carpeta Ciudadana (https://sede.administracion.gob.es) CSV: 298753191227704287823872 Identificador : 4311243 3. PROTECCIÓN DE DATOS PERSONALES De acuerdo con lo previsto en la Ley Orgánica 5/1999 de 13 de diciembre, de Protección de Datos de Carácter Personal, se informa que los datos solicitados en este impreso son necesarios para la tramitación de la solicitud y podrán ser objeto de tratamiento automatizado.
    [Show full text]
  • A Comparison of Software Engines for Simulation of Closed-Loop Control Systems
    New Jersey Institute of Technology Digital Commons @ NJIT Theses Electronic Theses and Dissertations Spring 5-31-2010 A comparison of software engines for simulation of closed-loop control systems Sanket D. Nikam New Jersey Institute of Technology Follow this and additional works at: https://digitalcommons.njit.edu/theses Part of the Electrical and Electronics Commons Recommended Citation Nikam, Sanket D., "A comparison of software engines for simulation of closed-loop control systems" (2010). Theses. 68. https://digitalcommons.njit.edu/theses/68 This Thesis is brought to you for free and open access by the Electronic Theses and Dissertations at Digital Commons @ NJIT. It has been accepted for inclusion in Theses by an authorized administrator of Digital Commons @ NJIT. For more information, please contact [email protected]. Cprht Wrnn & trtn h prht l f th Untd Stt (tl , Untd Stt Cd vrn th n f phtp r thr rprdtn f prhtd trl. Undr rtn ndtn pfd n th l, lbrr nd rhv r thrzd t frnh phtp r thr rprdtn. On f th pfd ndtn tht th phtp r rprdtn nt t b “d fr n prp thr thn prvt td, hlrhp, r rrh. If , r rt fr, r ltr , phtp r rprdtn fr prp n x f “fr tht r b lbl fr prht nfrnnt, h ntttn rrv th rht t rf t pt pn rdr f, n t jdnt, flfllnt f th rdr ld nvlv vltn f prht l. l t: h thr rtn th prht hl th r Inttt f hnl rrv th rht t dtrbt th th r drttn rntn nt: If d nt h t prnt th p, thn lt “ fr: frt p t: lt p n th prnt dl rn h n tn lbrr h rvd f th prnl nfrtn nd ll ntr fr th pprvl p nd brphl th f th nd drttn n rdr t prtt th dntt f I rdt nd flt.
    [Show full text]
  • A Novel Code Generation Methodology for Block Diagram Modeler And
    A novel code generation methodology for block diagram modeler and simulators Scicos and VSS Jean-Philippe Chancelier∗ Ramine Nikoukhah∗ Universit Paris-Est, Cermics (ENPC) Altair Engineering October 25, 2018 Abstract Block operations during simulation in Scicos and VSS environments can naturally be de- scribed as Nsp functions. But the direct use of Nsp functions for simulation leads to poor performance since the Nsp language is interpreted, not compiled. The methodology presented in this paper is used to develop a tool for generating efficient compilable code, such as C and ADA, for Scicos and VSS models from these block Nsp functions. Operator overloading and partial evaluation are the key elements of this novel approach. This methodology may be used in other simulation environments such as Matlab/Simulink. Contents 1 Introduction 2 2 Simple Example 4 3 Operator overloading and pseudo-code generation 9 3.1 Newdatatypesandoverloading . ....... 10 4 Code generation directives 13 4.1 Creating persistent variables . ........... 13 4.2 Creatingfunctionarguments . ........ 14 arXiv:1510.02789v1 [cs.MS] 8 Oct 2015 4.3 Functionconstant ................................ ..... 14 4.4 Functionexpand .................................. 15 4.5 Functions bvarcopy and bvarempty . ......... 15 5 Application to code generation for Scicos 16 5.1 Codegenerationscript . ....... 16 5.2 Conditionalsubsampling. ........ 17 5.3 Example......................................... 21 6 Conclusion 23 ∗ This code generation tool was developed during a three-years research projects funded within the French FUI 2011 called “Projet P” [6] 1 A C code generated for the extended Kalman filter example 23 1 Introduction In this paper we present a new methodology of code generation for block diagram simulation tools such as Scicos [2], VisSim SIMULATE1 (VSS) and Simulink.
    [Show full text]
  • Scicoslab を活用した直流モータ制御実習プログラムの改良 Improvement
    ScicosLab を活用した直流モータ制御実習プログラムの改良 Improvement of a Laboratory Course for DC Motor Control using ScicosLab ○ 沢口 義人(木更津高専) 岡本 峰基(木更津高専) 大橋 太郎(木更津高専) 鴇田 正俊(木更津高専) Yoshihito SAWAGUCHI, Kisarazu National College of Technology, Kiyomidai-higashi 2-11-1, Kisarazu-shi, Chiba Mineki OKAMOTO, Kisarazu National College of Technology Taro OOHASHI, Kisarazu National College of Technology Masatoshi TOKITA, Kisarazu National College of Technology In system control education, laboratory experiments on real equipments largely contribute to developing practical skills. We have been improving a laboratory course for DC motor control using ScicosLab. ScicosLab is a freeware platform for numerical computation with block diagram modeler/simulator. Using the ScicosLab graphical user interface, students can easily operate a real closed-loop system which consists of a DC motor and its driver, an analog data acquisition device and a personal computer running ScicosLab. This paper describes a brief overview of the laboratory course, improvements for the last semester and results of student questionnaire. Key Words: System control education, Free software, DC motor control, Laboratory course, ScicosLab 1. はじめに 2. ScicosLab の活用 システム制御教育に際しては,モータ等の実機を用いた実 ScicosLab[4] は,工学と科学のための対話的環境を提供す 習が有用である.特に教育初期段階に実機実習を実施するこ る数値計算ソフトウェアである Scilab[3] の派生版である. とより,座学による理論の習得に対する意欲の向上を期待で Scilab が Scilab 5 へのバージョンアップに際して Java 環 きる.このような実機実習では,制御結果の適切な評価のた 境を採用したために安定性と高速性が低下したことに対し, めに制御量や操作量を容易にグラフ化できることが望まし ScicosLab は Scilab 4.1.2 を基に GTK+[6] により GUI を実 い.また,制御則や制御パラメータの容易な変更を実現する
    [Show full text]
  • Simulation and Automatic Code Generation for Real Time Embedded Systems Using Scicoslab/Scicos and Erika/Linux
    Simulation and automatic code generation for real time embedded systems using ScicosLab/Scicos and Erika/Linux I° Italian course - "Red October" Tutors: Simone Mannori - ScicosLab developer (www.scicos.org, www.scicoslab.org) Paolo Gai - Evidence S.r.l. (http://www.evidence.eu.com/) Roberto Bucher - SUPSI Lugano (http://linux3.dti.supsi.ch/~bucher/) Matteo Morelli - RTSS developer (Centro "E. Piaggio", Pisa Univ., http://rtss.sourceforge.net/) Daniele Mazzi - Siena University Location Florence University - Plesso didattico, Viale Morgagni 40, Firenze, ITALY Time 19/20/21 October 2010 Morning: 9:00 – 13:00 / Afternoon :14:00 - 17:00 Web page: http://erika.tuxfamily.org/scilabscicos/scicoslabcourse2010.html Registration Registration is mandatory: https://www.softconf.com/b/scicoslab2010/ Languages - Italian as default spoken languages, English and French on request. Books and documents in English. Target audience - Students, engineers and scientists working with complex simulations and control systems design. 1 Prerequisites - A portable personal computer (Linux/ Windows/ Mac OSx) - A clean USB key for file exchange - Internet access is not required but could be useful Note for Windows users: some exercises require the presence of a C compiler. Under Linux "gcc" is installed as default (check with "gcc -v"). Windows users must install Visual C/C++ Studio Express 2008 (this version is freely downloadable from Microsoft's web site). References - The new Yellow Book: Modeling and Simulation in Scilab/ Scicos With Scicoslab 4.4, Stephen L. Campbell, Jean-Philippe Chancelier, et Ramine Nikoukhah - On line documentation available here: http://www.scicos.org/documentations.html Rationale This three days course is a general purpose introduction to the art of dynamical systems simulation and automatic code generation for real time embedded systems using ScicosLab/Scicos.
    [Show full text]
  • Information Engineering and Computer Science, M.Sc
    Handbook of Modules for the Degree Programme Information Engineering and Computer Science, M.Sc. Faculty of Communication and Environment Version 1.5 27.1.2021 International Management and Psychology, M.Sc. Rhine‐Waal University of Applied Sciences ‐ Faculty of Communication and Environment ‐ 2021 Dokumentenhistorie Version Datum Verantw. Bemerkung 0.1 2013‐12‐13 TH Initialversion 0.2 2013‐12‐16 TH „Weight towards final grade“ angepasst 0.3 2013‐12‐17 TH Module M‐IE_EA.02 und M‐IE_3.01 eingefügt 1.0 2014‐01‐13 TH Version zur Veröffentlichung 1.1 2014‐09‐24 TH Bearbeitungszeit Masterarbeit laut PO angepasst 1.2 2015‐10‐19 SLE Modulbeschreibungen gem. Akkreditierungsauflagen angepasst 1.3 2015‐10‐19 TH deutsche Bezeichnungen ins Curriculum eingeführt redaktionelle Änderungen 1.4 2019‐04‐25 MS Bearbeitung für Reakkreditierungszwecke 1.5 2021‐1‐27 MS Bearbeitung zur Auflagenerfüllung Information Engineering and Computer Science, M.Sc. Rhine‐Waal University of Applied Sciences ‐ Faculty of Communication and Environment ‐ 2021 I Explanation Specification of the types of assessment Assessments are regulated in the “general examination regulations for Bachelor’s and Master’s degree programmes at Rhein-Waal University of Applied Science” (RPO Rahmenprüfungsordnung der Hochschule Rhein-Waal). According to RPO there are two types of assessments: Certificates (according RPO §20) and Examinations (according to RPO §14). The Master’s degree program “Information Engineering and Computer Science” makes only use of graded examinations according to RPO §20. Examinations are also regulated in the examination regulation of the Master’s degree program “Information Engineering and Computer Science” (PO Prüfungsordnung für den Masterstudiengang Information Engineering and Computer Science an der Hochschule Rhein‐Waal) in §§ 10 to 18 in accordance to the RPO.
    [Show full text]
  • Automatic Generation of Controls Code from Models for Real-Time Linux Platforms
    Automatic generation of controls code from models for real-time Linux platforms Bruno Morelli, Riccardo Schiavi, Claudio Scordino, Paolo Gai Evidence Srl Pisa, Italy {b.morelli, r.schiavi, claudio, pj}@evidence.eu.com Marco Di Natale Scuola Superiore Sant’Anna Pisa, Italy [email protected] Abstract We present our experience in the design and realization of a toolset for the extension of the simu- lation and modeling capabilities and the automatic generation of code from ScicosLab models running on embedded Linux and RTAI. ScicosLab — a free system modeler and simulator — has been extended with add-ons for the modeling of hierarchical Finite State Machines (FSMs) and a GUI prototyper based on the Qt graphical libraries. The code generator supports multirate models and maps the model blocks onto multiple periodic threads, with the automatic synthesis of thread scheduling, communication and access to the I/O primitives. We discuss the design challenges and options and the implementation issues encountered during the development of the toolset, including the mapping of functionality onto threads, the problem of semantics preservation in the implementation of communication, the methods used to abstract from the architecture- specific I/O details and the concurrent use of PCI and video peripherals. We show an example of generated code and a set of performance measurements on real hardware with a data acquisition peripheral. 1 Introduction the possibility of adding errors during the manual coding stage. The Model-Based Design (MBD) development methodology is today widely used in several appli- Several commercial products are offered for the cation domains like automotive, aerospace and con- modeling, simulation and verification of systems ac- trols.
    [Show full text]
  • Matlabcompat.Jl: Helping Julia Understand Your Matlab/Octave Code
    MatlabCompat.jl: helping Julia understand Your Matlab/Octave Code Vardan Andriasyan1, Yauhen Yakimovich1, Artur Yakimovich1* Affiliations: 1University of Zurich *correspondence: [email protected], [email protected] Scientific legacy code in MATLAB/Octave not compatible with modernization of research workflows is vastly abundant throughout academic community. Performance of non-vectorized code written in MATLAB/Octave represents a major burden. A new programming language for technical computing Julia, promises to address these issues. Although Julia syntax is similar to MATLAB/Octave, porting code to Julia may be cumbersome for researchers. Here we present MatlabCompat.jl - a library aimed at simplifying the conversion of your MATLAB/Octave code to Julia. We show using a simplistic image analysis use case that MATLAB/Octave code can be easily ported to high performant Julia using MatlabCompat.jl. Motivation and significance Scientific background and the motivation for developing the software MATLAB/Octave is a fourth-generation multi-paradigm numerical programming language. MATLABTM is a computing environment and a proprietary programming language (MathWorks Inc.). Designed initially mostly for matrix manipulations, its current features allow data visualization, algorithms implementation, user interface creation, and interfacing program languages. Introduced in the end of 1980s its syntaxial sibling, GNU Octave, offered an open source alternative to the commercial product of Mathworks Inc. (Eaton, Bateman, and Hauberg 1997). More than a tool for engineers, MATLAB/Octave has 1 become a de facto default tool for developing scientific code, often used to solve problems that are otherwise typical for general purpose programming languages. This lead to an accumulation of prototype-like scientific software solutions unable to scale up to the promise and, thus, limiting the research work.
    [Show full text]
  • Sistema Avanzado De Prototipado Rápido Para Control En
    TESIS DOCTORAL SISTEMA AVANZADO DE PROTOTIPADO RAPIDO´ PARA CONTROL EN EXOESQUELETOS Y DISPOSITIVOS MECATRONICOS´ Autor: Antonio Flores Caballero Director: Mar´ıaDolores Blanco Rojas Codirector: Luis Enrique Moreno Lorente Tutor: Mar´ıaDolores Blanco Rojas DEPARTAMENTO DE INGENIERIA´ DE SISTEMAS Y AUTOMATICA´ Leganes,´ 15 de Diciembre 2014 TESIS DOCTORAL (THESIS) SISTEMA AVANZADO DE PROTOTIPADO RAPIDO´ PARA CONTROL EN EXOESQUELETOS Y DISPOSITIVOS MECATRONICOS´ . Autor (Candidate): Antonio Flores Caballero Director (Adviser): Mar´ıa Dolores Blanco Rojas Codirector (Co-Adviser): Luis Enrique Moreno Lorente Tribunal (Review Committee) Presidente (Chair): Jose Luis Pons Rovira Vocal (Member): Antonio Gimenez´ Fernandez´ Secretario (Secretary): Santiago Garrido Bullon´ Suplente (Substitute): T´ıtulo (Grade): Doctorado en Ingenier´ıa Electrica,´ Electronica´ y Automatica´ Calificacion:´ Leganes,´ 15 de Diciembre de 2014 Esta tesis ha sido financiada por el Ministerio de Ciencia e Innovacion´ del Gobierno de Espana,˜ y esta´ enmarcada dentro de proyecto HYPER CONSOLIDER-INGENIO 2010 (ref. 2010/00154/001). Robotics Lab – Universidad Carlos III de Madrid Abstract One of the most challenging fields of engineering is system control, which was established with the aim of automating complex systems without human in- teraction. Thus, by means of the feedback theory, it is intended to modify the most critical system variables to the obtain the desired behavior. Event most of the ap- plications are linear control-based, there exist some occasions where it becomes necessary to apply other approaches for obtaining reasonable results. During the last years, a new type of elements named intelligent materials have been disco- vered and developed. They yield very interesting properties although they are extremely difficult to control with classical techniques.
    [Show full text]
  • A Nonlinear Model-Based Control Realized with an Open Framework for Educational Purposes
    A Nonlinear Model-Based Control realized with an Open Framework for Educational Purposes Klaus Weichinger BIOE Open Hardware Automation System Developer 3300 Greinsfurth, Austria [email protected] - http://bioe.sourceforge.net Abstract Today, nonlinear model-based control methods are an essential part in different control applications. To provide a complete open framework for educational purposes this contribution extends common open source software (Scilab/Scicos, Maxima and rt-preempt Linux real-time system) with a low-cost do-it- yourself open hardware interface and a web-based monitoring system embedded into Scicos blocks. The simple concept of the open hardware interface called Bioe (Basic Input Output Elements) allows the real-time application to interact with general analog and digital signals as well as to more complex 2 devices (e.g. resistive touch panels, RC servos, I C acceleration sensors). Furthermore, a prototype of a web-based monitoring system using Ajax is treated. It consists of a Http web server embedded into a Scicos block so that existing Scicos code generation packages for rt-preempt Linux can be used without modifications. To demonstrate the applicability and usability of the proposed framework a nonlinear model-based control law for a mechatronic multi-input multi-output system is derived with the concept of input/output linearization and realized with the proposed open framework. 1 Introduction and Xenomai [7], but the comparison of real-time approaches is not the topic of this paper. Rapid Control Prototyping (RCP) is still asso- This contribution picks up two aspects that ciated with cost-intensive hardware and software in- should complete the existing OSS [2, 8, 4, 9] to a cost- vestments.
    [Show full text]
  • July 31, 2010 Yellow Sale Mathematics Books
    ABCD springer.com March 1, 2010 – July 31, 2010 Yellow Sale Mathematics Books Great savings on great books ORDER NOW springer.com/booksales springer.com/booksales Yellow Sale 2010 March 1, 2010 – July 31, 2010 ORDER NOW Yellow Sale 2010 Great Savings on Great Books in Mathematics How to order Selected titles at half price E-mail [email protected] [email protected] The Yellow Sale this year features 400 specially selected titles for Visit springer.com/booksales Use the enclosed order form mathematicians everywhere. All list prices have been slashed; most sale prices are half price so you can afford to get the best. Contact your local bookseller or one of our recommended booksellers Buy now! Call +49 (0) 6221-345-0 Don’t wait, pick your favorites and send your purchase order now. (Springer Customer Service) Although Springer makes every effort to re-stock, some books may be Please note limited in quantity. 7 The books in this catalogue are arranged by language and then alphabetically by author‘s last name Deadline July 31, 2010 7 Some stocks may be limited and are subject to availability Orders that arrive on July 31 at Springer Customer Service Center will still 7 This sale is not valid in North receive the Yellow Sale discounted price, even if the shipment does not and South America leave our warehouse until later. 7 Prices are subject to change without notice 7 All prices are exclusive of carriage charges. All errors Springer quality you can count on and omissions excepted First-rate authors guarantee the high level of content that remains VAT for books timeless over the years.
    [Show full text]