blob: dbeca02c3ea05b78b68a54020deb278efa676463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2008 - INRIA
// Copyright (C) 2009-2010 - DIGITEO
//
// This file is released under the 3-clause BSD license. See COPYING-BSD.
if with_modelica_compiler() then
subdemolist = [_("Ball on a Platform") , "ModelicaBlocks/ball_platform.dem.sce" ; ..
_("Bouncing Ball") , "ModelicaBlocks/modelica_bouncing_ball.dem.sce" ; ..
_("Chaos Modelica") , "ModelicaBlocks/modelica_chaos.dem.sce" ; ..
_("Hydraulics blocks") , "ModelicaBlocks/modelica_hydraulics.dem.sce" ; ..
_("RLC circuit") , "ModelicaBlocks/modelica_rlc_circuit.dem.sce"
];
subdemolist(:,2) = SCI + "/modules/xcos/demos/" + subdemolist(:,2);
end
clear with_modelica_compiler;
|