• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Oct-2017-

module-FMU/H15-Oct-2017-2,0731,295

module-aerodyn/H15-Oct-2017-1,777871

module-asynchronous_machine/H15-Oct-2017-3,0191,960

module-autodiff_test/H15-Oct-2017-3,5352,920

module-ballbearing_contact/H15-Oct-2017-2,2551,833

module-constlaw/H15-Oct-2017-14887

module-constlaw-f90/H15-Oct-2017-591408

module-constlaw-f95/H15-Oct-2017-591408

module-cont-contact/H15-Oct-2017-1,046785

module-cyclocopter/H15-Oct-2017-1,8131,238

module-damper-graall/H15-Oct-2017-671398

module-damper-hydraulic/H15-Oct-2017-15898

module-drive/H15-Oct-2017-15290

module-eu2phi/H15-Oct-2017-170104

module-flightgear/H15-Oct-2017-819536

module-hid/H15-Oct-2017-1,205906

module-hunt-crossley/H15-Oct-2017-359271

module-hydrodynamic_plain_bearing/H15-Oct-2017-3,2072,221

module-imu/H15-Oct-2017-1,229976

module-inline_friction/H15-Oct-2017-3,7423,174

module-inplane_friction/H15-Oct-2017-2,0021,770

module-journal_bearing/H15-Oct-2017-1,3441,040

module-loadinc/H15-Oct-2017-1,060804

module-mds/H15-Oct-2017-419294

module-minmaxdrive/H15-Oct-2017-547368

module-multi_step_drive/H15-Oct-2017-327188

module-muscles/H15-Oct-2017-558436

module-namespace/H15-Oct-2017-197136

module-nodedistdrive/H15-Oct-2017-336192

module-nonsmooth-node/H15-Oct-2017-1,6621,120

module-octave/H15-Oct-2017-8,9337,239

module-scalarfunc/H15-Oct-2017-8136

module-switch_drive/H15-Oct-2017-407259

module-tclpgin/H15-Oct-2017-235155

module-template/H15-Oct-2017-428298

module-template2/H15-Oct-2017-242165

module-udunits/H15-Oct-2017-307195

module-uni_in_plane/H15-Oct-2017-1,3681,062

module-wheel2/H15-Oct-2017-637415

module-wheel4/H15-Oct-2017-2,9982,154

Makefile.amH A D02-Oct-201716.4 KiB466407

Makefile.inH A D14-Oct-201729.9 KiB858750

Makefile.moduleH A D12-Jan-20172.2 KiB7831

Makefile.templateH A D26-Feb-2007490 151

READMEH A D12-Jan-20171.9 KiB4934

README

1$Header: /var/cvs/mbdyn/mbdyn/mbdyn-1.0/modules/README,v 1.14 2017/01/12 14:46:55 masarati Exp $
2MBDyn (C) is a multibody analysis code.
3http://www.mbdyn.org
4
5Copyright (C) 1996-2017
6
7Pierangelo Masarati	<masarati@aero.polimi.it>
8Paolo Mantegazza	<mantegazza@aero.polimi.it>
9
10Dipartimento di Ingegneria Aerospaziale - Politecnico di Milano
11via La Masa, 34 - 20156 Milano, Italy
12http://www.aero.polimi.it
13
14Changing this copyright notice is forbidden.
15
16This program is free software; you can redistribute it and/or modify
17it under the terms of the GNU General Public License as published by
18the Free Software Foundation (version 2 of the License).
19
20
21This program is distributed in the hope that it will be useful,
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24GNU General Public License for more details.
25
26You should have received a copy of the GNU General Public License
27along with this program; if not, write to the Free Software
28Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29
30
31
32The `modules' directory contains user-defined modules (originally,
33user-defined elements).  To enable user-defined modules:
34
35  - make sure MBDyn is configured with --enable-runtime-loading
36  - create a subdirectory `module-<user>' in directory `modules'
37  - create a (set of) source file(s) implementing the user-defined
38    module; the file `module-<user>.<ext>' must be present, where
39    `<ext>' is based on the language (.c, .cc, .f, .f90 should work
40    for C, C++, F77, F90 respectively).
41  - if required, copy Makefile.template in `module-<user>'
42    as Makefile.inc and add the other dependencies
43  - configure the module for build using `--with-module=<user>',
44    where `<user>' is a whitespace separated list of modules.
45
46For instance, to enable the `module-template' user-defined module,
47add `--with-module=template' to your configure command.
48
49