Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Русский

Change language to:
English - Français - 日本語 - Português -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Xcos > xcos

xcos

Block diagram editor and GUI for the hybrid simulator

Calling Sequence

xcos()
xcos(filename)
xcos(scs_m_list)

Module

Arguments

  • filename : a character string containing the path of the diagram file (.cos, .cosf or .xcos extension). If no input argument is used, an empty diagram is opened (default name Untitled).

  • scs_m_list :a Xcos diagram structure after edition.

Description

Xcos is a graphical editor for constructing models of hybrid dynamical systems. Models can then be assembled, loaded, saved, compiled, simulated, using GUI of Xcos. Xcos serves as an interface to the various block diagram compilers and the hybrid simulator scicosim

The Xcos environment presents the following elements:

  • Editor

    The editor allows the design of flow charts representing a dynamic system made of blocks defined in palettes. Users can customize standard blocks and define new ones.

  • Palette browser

    The palette browser lists all Xcos standard blocks grouped by categories (signal processing, electrical, hydraulics, derivative, integral, etc.). See the figure below.

  • Compiler/Simulator

    Xcos environment enables, from the built model, the simulation of complex systems - discrete, continuous, defined by symbolic equations (Modelica), etc.. and hybrid systems combining the capabilities above. The data resulting of the simulation can then be graphically viewed in real time, used in Scilab for post processing...

Invoking xcos with the toolbar icon , with the Xcos menu item in Applications of the Scilab main window, or as the following example opens up the empty Xcos window of edition shown below.

xcos

To open an existing diagram, you must provide a valid filename, like in this example:

xcos("SCI/modules/xcos/demos/bounce.xcos")

In this use case, the Xcos window is opened and displays the diagram ofbounce.xcos demonstration.

If a diagram structure is present in Scilab workspace, you can open it like in this example:

loadXcosLibs();

// define diagram structure
scs_m = scicos_diagram();
scs_m.props.title = "Imported diagram";
scs_m.objs(1) = SUMMATION("define");
scs_m.objs(1).graphics.sz = [30 50];

xcos(scs_m);

where scs_m is the diagram structure of bounce.xcos.

You build your models by linking the blocks provided in the palette browser simultaneously opened with Xcos editor. This window has the following appearance

You can customize the palettes to be shown by clicking on the Palette title in the left part of the windows. The palette windows shows a selection list where you can select/deselect palettes individually. Tp return to the previous display, click on a palette title.

Xcos requires a C compiler for simulation acceleration.

An installed supported compiler is recommended.

Example

xcos();
xcos(SCI+"/modules/xcos/demos/Discrete-KalmanFilter.xcos");
scs_m = scicos_diagram();
scs_m.objs($+1) = BIGSOM_f("define");
xcos(scs_m);
Report an issue
<< Solvers Xcos Menu_Entries >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:37:58 CEST 2013