cyfaust 0.1.0__cp311-cp311-macosx_15_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cyfaust/CMakeLists.txt +93 -0
- cyfaust/__init__.py +0 -0
- cyfaust/__main__.py +819 -0
- cyfaust/box.pxd +46 -0
- cyfaust/box.pyx +2459 -0
- cyfaust/common.pxd +5 -0
- cyfaust/common.pyx +61 -0
- cyfaust/cyfaust.cpython-311-darwin.so +0 -0
- cyfaust/faust_box.pxd +298 -0
- cyfaust/faust_box_oo.pyx +66 -0
- cyfaust/faust_gui.pxd +261 -0
- cyfaust/faust_interp.pxd +160 -0
- cyfaust/faust_player.pxd +80 -0
- cyfaust/faust_signal.pxd +257 -0
- cyfaust/gui_statics.cpp +15 -0
- cyfaust/interp.pyx +673 -0
- cyfaust/player.cpp +32519 -0
- cyfaust/player.pyx +191 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUBase.cpp +2327 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUBase.h +1019 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUDispatch.cpp +423 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUDispatch.h +82 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUInputElement.cpp +151 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUInputElement.h +119 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUOutputElement.cpp +62 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUOutputElement.h +66 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUPlugInDispatch.cpp +615 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUPlugInDispatch.h +128 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUScopeElement.cpp +512 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/AUScopeElement.h +544 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/ComponentBase.cpp +370 -0
- cyfaust/resources/architecture/AU/AUPublic/AUBase/ComponentBase.h +340 -0
- cyfaust/resources/architecture/AU/AUPublic/AUEffectBase/AUEffectBase.cpp +463 -0
- cyfaust/resources/architecture/AU/AUPublic/AUEffectBase/AUEffectBase.h +391 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/AUInstrumentBase.cpp +837 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/AUInstrumentBase.h +267 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/AUMIDIBase.cpp +495 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/AUMIDIBase.h +213 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/LockFreeFIFO.h +168 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/MIDIControlHandler.h +92 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/MusicDeviceBase.cpp +354 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/MusicDeviceBase.h +126 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthElement.cpp +419 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthElement.h +227 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthEvent.h +145 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthNote.cpp +138 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthNote.h +186 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthNoteList.cpp +93 -0
- cyfaust/resources/architecture/AU/AUPublic/AUInstrumentBase/SynthNoteList.h +232 -0
- cyfaust/resources/architecture/AU/AUPublic/Utility/AUBaseHelper.cpp +134 -0
- cyfaust/resources/architecture/AU/AUPublic/Utility/AUBaseHelper.h +80 -0
- cyfaust/resources/architecture/AU/AUPublic/Utility/AUBuffer.cpp +217 -0
- cyfaust/resources/architecture/AU/AUPublic/Utility/AUBuffer.h +267 -0
- cyfaust/resources/architecture/AU/AUPublic/Utility/AUMIDIDefs.h +136 -0
- cyfaust/resources/architecture/AU/AUPublic/Utility/AUSilentTimeout.h +93 -0
- cyfaust/resources/architecture/AU/English.lproj/InfoPlist.strings +0 -0
- cyfaust/resources/architecture/AU/FaustAU.exp +2 -0
- cyfaust/resources/architecture/AU/FaustAU.xcodeproj/project.pbxproj +968 -0
- cyfaust/resources/architecture/AU/FaustAU.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- cyfaust/resources/architecture/AU/FaustAUCustomView.plist +14 -0
- cyfaust/resources/architecture/AU/Info.plist +47 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAAtomic.h +305 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAAtomicStack.h +239 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAAudioChannelLayout.cpp +153 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAAudioChannelLayout.h +199 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAAutoDisposer.h +508 -0
- cyfaust/resources/architecture/AU/PublicUtility/CABufferList.cpp +264 -0
- cyfaust/resources/architecture/AU/PublicUtility/CABufferList.h +319 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAByteOrder.h +161 -0
- cyfaust/resources/architecture/AU/PublicUtility/CADebugMacros.cpp +88 -0
- cyfaust/resources/architecture/AU/PublicUtility/CADebugMacros.h +580 -0
- cyfaust/resources/architecture/AU/PublicUtility/CADebugPrintf.cpp +89 -0
- cyfaust/resources/architecture/AU/PublicUtility/CADebugPrintf.h +115 -0
- cyfaust/resources/architecture/AU/PublicUtility/CADebugger.cpp +77 -0
- cyfaust/resources/architecture/AU/PublicUtility/CADebugger.h +56 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAException.h +83 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAGuard.cpp +339 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAGuard.h +133 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAHostTimeBase.cpp +110 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAHostTimeBase.h +231 -0
- cyfaust/resources/architecture/AU/PublicUtility/CALogMacros.h +140 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAMath.h +68 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAMutex.cpp +345 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAMutex.h +163 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAReferenceCounted.h +87 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAStreamBasicDescription.cpp +795 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAStreamBasicDescription.h +409 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAThreadSafeList.h +255 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAVectorUnit.cpp +191 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAVectorUnit.h +100 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAVectorUnitTypes.h +59 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAXException.cpp +49 -0
- cyfaust/resources/architecture/AU/PublicUtility/CAXException.h +338 -0
- cyfaust/resources/architecture/AU/SectionPatternLight.tiff +0 -0
- cyfaust/resources/architecture/AU/Source/AUSource/FaustAU.h +38 -0
- cyfaust/resources/architecture/AU/Source/AUSource/FaustAU.r +153 -0
- cyfaust/resources/architecture/AU/Source/AUSource/FaustAUVersion.h +64 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Bargraph.h +18 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Bargraph.m +21 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Button.h +20 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Button.m +56 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_CustomView.h +87 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_CustomView.m +834 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_CustomViewFactory.h +13 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_CustomViewFactory.m +22 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Knob.h +81 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Knob.m +199 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Slider.h +18 -0
- cyfaust/resources/architecture/AU/Source/CocoaUI/FaustAU_Slider.m +21 -0
- cyfaust/resources/architecture/AU/version.plist +16 -0
- cyfaust/resources/architecture/VST/Info.plist +28 -0
- cyfaust/resources/architecture/VST/PkgInfo +1 -0
- cyfaust/resources/architecture/VST/README +11 -0
- cyfaust/resources/architecture/VST/VST.xcode/project.pbxproj +655 -0
- cyfaust/resources/architecture/alsa-console.cpp +246 -0
- cyfaust/resources/architecture/alsa-gtk.cpp +220 -0
- cyfaust/resources/architecture/alsa-qt.cpp +229 -0
- cyfaust/resources/architecture/api/DspFaust.cpp +612 -0
- cyfaust/resources/architecture/api/DspFaust.h +511 -0
- cyfaust/resources/architecture/api/README.md +237 -0
- cyfaust/resources/architecture/api/doc/Generic.md +38 -0
- cyfaust/resources/architecture/au-effect.cpp +487 -0
- cyfaust/resources/architecture/au-instrument.cpp +573 -0
- cyfaust/resources/architecture/bench.cpp +91 -0
- cyfaust/resources/architecture/c-jack-gtk.c +227 -0
- cyfaust/resources/architecture/ca-gtk.cpp +284 -0
- cyfaust/resources/architecture/ca-qt.cpp +424 -0
- cyfaust/resources/architecture/cpal.rs +195 -0
- cyfaust/resources/architecture/csound.cpp +245 -0
- cyfaust/resources/architecture/csvplot.cpp +227 -0
- cyfaust/resources/architecture/daisy/Makefile +14 -0
- cyfaust/resources/architecture/daisy/README.md +50 -0
- cyfaust/resources/architecture/daisy/ex_faust.cpp +173 -0
- cyfaust/resources/architecture/dssi.cpp +1262 -0
- cyfaust/resources/architecture/dummy-mem.cpp +186 -0
- cyfaust/resources/architecture/dummy.cpp +294 -0
- cyfaust/resources/architecture/faust/au/AUUI.h +404 -0
- cyfaust/resources/architecture/faust/audio/alsa-dsp.h +693 -0
- cyfaust/resources/architecture/faust/audio/android-dsp.h +583 -0
- cyfaust/resources/architecture/faust/audio/audio.h +115 -0
- cyfaust/resources/architecture/faust/audio/channels.h +122 -0
- cyfaust/resources/architecture/faust/audio/coreaudio-dsp.h +1543 -0
- cyfaust/resources/architecture/faust/audio/coreaudio-ios-dsp.h +743 -0
- cyfaust/resources/architecture/faust/audio/dummy-audio.h +255 -0
- cyfaust/resources/architecture/faust/audio/esp32-dsp.h +284 -0
- cyfaust/resources/architecture/faust/audio/fpe.h +164 -0
- cyfaust/resources/architecture/faust/audio/jack-dsp.h +534 -0
- cyfaust/resources/architecture/faust/audio/juce-dsp.h +119 -0
- cyfaust/resources/architecture/faust/audio/netjack-dsp.h +354 -0
- cyfaust/resources/architecture/faust/audio/oboe-dsp.h +308 -0
- cyfaust/resources/architecture/faust/audio/ofaudio-dsp.h +155 -0
- cyfaust/resources/architecture/faust/audio/opensles-android-dsp.h +631 -0
- cyfaust/resources/architecture/faust/audio/osc-dsp.h +120 -0
- cyfaust/resources/architecture/faust/audio/portaudio-dsp.h +236 -0
- cyfaust/resources/architecture/faust/audio/rtaudio-dsp.h +241 -0
- cyfaust/resources/architecture/faust/audio/samAudio.h +140 -0
- cyfaust/resources/architecture/faust/audio/teensy-dsp.h +171 -0
- cyfaust/resources/architecture/faust/dsp/cmajor-cpp-dsp.h +253 -0
- cyfaust/resources/architecture/faust/dsp/cmajorpatch-dsp.h +483 -0
- cyfaust/resources/architecture/faust/dsp/cpp-dsp-adapter.h +38 -0
- cyfaust/resources/architecture/faust/dsp/dsp-adapter.h +836 -0
- cyfaust/resources/architecture/faust/dsp/dsp-bench.h +611 -0
- cyfaust/resources/architecture/faust/dsp/dsp-checker.h +115 -0
- cyfaust/resources/architecture/faust/dsp/dsp-combiner.h +810 -0
- cyfaust/resources/architecture/faust/dsp/dsp-compute-adapter.h +159 -0
- cyfaust/resources/architecture/faust/dsp/dsp-multi.h +702 -0
- cyfaust/resources/architecture/faust/dsp/dsp-multifun.h +90 -0
- cyfaust/resources/architecture/faust/dsp/dsp-optimizer.h +511 -0
- cyfaust/resources/architecture/faust/dsp/dsp-tools.h +229 -0
- cyfaust/resources/architecture/faust/dsp/dsp.h +321 -0
- cyfaust/resources/architecture/faust/dsp/fastmath.cpp +301 -0
- cyfaust/resources/architecture/faust/dsp/faust-dynamic-engine.cpp +494 -0
- cyfaust/resources/architecture/faust/dsp/faust-dynamic-engine.h +386 -0
- cyfaust/resources/architecture/faust/dsp/faust-engine.h +75 -0
- cyfaust/resources/architecture/faust/dsp/faust-poly-engine.h +638 -0
- cyfaust/resources/architecture/faust/dsp/interpreter-dsp-c.h +288 -0
- cyfaust/resources/architecture/faust/dsp/interpreter-dsp.h +362 -0
- cyfaust/resources/architecture/faust/dsp/interpreter-machine-dsp.h +233 -0
- cyfaust/resources/architecture/faust/dsp/libfaust-box-c.h +817 -0
- cyfaust/resources/architecture/faust/dsp/libfaust-box.h +889 -0
- cyfaust/resources/architecture/faust/dsp/libfaust-c.h +116 -0
- cyfaust/resources/architecture/faust/dsp/libfaust-signal-c.h +649 -0
- cyfaust/resources/architecture/faust/dsp/libfaust-signal.h +731 -0
- cyfaust/resources/architecture/faust/dsp/llvm-dsp-adapter.h +160 -0
- cyfaust/resources/architecture/faust/dsp/llvm-dsp-c.h +524 -0
- cyfaust/resources/architecture/faust/dsp/llvm-dsp.h +575 -0
- cyfaust/resources/architecture/faust/dsp/llvm-machine-dsp.h +215 -0
- cyfaust/resources/architecture/faust/dsp/one-sample-dsp.h +477 -0
- cyfaust/resources/architecture/faust/dsp/poly-dsp.h +1079 -0
- cyfaust/resources/architecture/faust/dsp/poly-interpreter-dsp.h +143 -0
- cyfaust/resources/architecture/faust/dsp/poly-llvm-dsp.h +249 -0
- cyfaust/resources/architecture/faust/dsp/poly-wasm-dsp.h +257 -0
- cyfaust/resources/architecture/faust/dsp/proxy-dsp.h +108 -0
- cyfaust/resources/architecture/faust/dsp/proxy-osc-dsp.h +109 -0
- cyfaust/resources/architecture/faust/dsp/rnbo-dsp.h +187 -0
- cyfaust/resources/architecture/faust/dsp/sound-player.h +428 -0
- cyfaust/resources/architecture/faust/dsp/timed-dsp.h +279 -0
- cyfaust/resources/architecture/faust/dsp/wasm-dsp-imp.h +188 -0
- cyfaust/resources/architecture/faust/dsp/wasm-dsp.h +309 -0
- cyfaust/resources/architecture/faust/dsp/ysfx-dsp.h +188 -0
- cyfaust/resources/architecture/faust/export.h +61 -0
- cyfaust/resources/architecture/faust/gui/APIUI.h +726 -0
- cyfaust/resources/architecture/faust/gui/BelaOSCUI.h +170 -0
- cyfaust/resources/architecture/faust/gui/CGlue.h +667 -0
- cyfaust/resources/architecture/faust/gui/CInterface.h +142 -0
- cyfaust/resources/architecture/faust/gui/ControlSequenceUI.h +197 -0
- cyfaust/resources/architecture/faust/gui/ControlUI.h +137 -0
- cyfaust/resources/architecture/faust/gui/DaisyControlUI.h +283 -0
- cyfaust/resources/architecture/faust/gui/DaisyPatchInitControlUI.h +254 -0
- cyfaust/resources/architecture/faust/gui/DecoratorUI.h +115 -0
- cyfaust/resources/architecture/faust/gui/Esp32ControlUI.h +341 -0
- cyfaust/resources/architecture/faust/gui/Esp32Reader.h +102 -0
- cyfaust/resources/architecture/faust/gui/Esp32SensorUI.h +137 -0
- cyfaust/resources/architecture/faust/gui/FUI.h +147 -0
- cyfaust/resources/architecture/faust/gui/GTKUI.h +1414 -0
- cyfaust/resources/architecture/faust/gui/GUI.h +465 -0
- cyfaust/resources/architecture/faust/gui/JSONControl.h +48 -0
- cyfaust/resources/architecture/faust/gui/JSONUI.h +722 -0
- cyfaust/resources/architecture/faust/gui/JSONUIDecoder.h +589 -0
- cyfaust/resources/architecture/faust/gui/JuceGUI.h +2061 -0
- cyfaust/resources/architecture/faust/gui/JuceOSCUI.h +163 -0
- cyfaust/resources/architecture/faust/gui/JuceParameterUI.h +158 -0
- cyfaust/resources/architecture/faust/gui/JuceReader.h +103 -0
- cyfaust/resources/architecture/faust/gui/JuceStateUI.h +88 -0
- cyfaust/resources/architecture/faust/gui/LayoutUI.h +423 -0
- cyfaust/resources/architecture/faust/gui/LibsndfileReader.h +366 -0
- cyfaust/resources/architecture/faust/gui/MapUI.h +370 -0
- cyfaust/resources/architecture/faust/gui/MemoryReader.h +111 -0
- cyfaust/resources/architecture/faust/gui/MetaDataUI.h +357 -0
- cyfaust/resources/architecture/faust/gui/MidiUI.h +939 -0
- cyfaust/resources/architecture/faust/gui/OCVUI.h +688 -0
- cyfaust/resources/architecture/faust/gui/OSCUI.h +219 -0
- cyfaust/resources/architecture/faust/gui/PathBuilder.h +228 -0
- cyfaust/resources/architecture/faust/gui/PresetUI.h +337 -0
- cyfaust/resources/architecture/faust/gui/PrintCUI.h +152 -0
- cyfaust/resources/architecture/faust/gui/PrintUI.h +121 -0
- cyfaust/resources/architecture/faust/gui/QTUI.h +1891 -0
- cyfaust/resources/architecture/faust/gui/RosCI.h +493 -0
- cyfaust/resources/architecture/faust/gui/RosUI.h +488 -0
- cyfaust/resources/architecture/faust/gui/SaveUI.h +163 -0
- cyfaust/resources/architecture/faust/gui/SimpleParser.h +583 -0
- cyfaust/resources/architecture/faust/gui/SoundUI.h +217 -0
- cyfaust/resources/architecture/faust/gui/Soundfile.h +342 -0
- cyfaust/resources/architecture/faust/gui/Styles/Blue.qrc +5 -0
- cyfaust/resources/architecture/faust/gui/Styles/Blue.qss +177 -0
- cyfaust/resources/architecture/faust/gui/Styles/Default.qrc +5 -0
- cyfaust/resources/architecture/faust/gui/Styles/Default.qss +117 -0
- cyfaust/resources/architecture/faust/gui/Styles/Grey.qrc +5 -0
- cyfaust/resources/architecture/faust/gui/Styles/Grey.qss +174 -0
- cyfaust/resources/architecture/faust/gui/Styles/Salmon.qrc +5 -0
- cyfaust/resources/architecture/faust/gui/Styles/Salmon.qss +171 -0
- cyfaust/resources/architecture/faust/gui/UI.h +87 -0
- cyfaust/resources/architecture/faust/gui/ValueConverter.h +543 -0
- cyfaust/resources/architecture/faust/gui/WaveReader.h +364 -0
- cyfaust/resources/architecture/faust/gui/console.h +322 -0
- cyfaust/resources/architecture/faust/gui/httpdUI.h +372 -0
- cyfaust/resources/architecture/faust/gui/meta.h +39 -0
- cyfaust/resources/architecture/faust/gui/mspUI.h +580 -0
- cyfaust/resources/architecture/faust/gui/qrcodegen.h +269 -0
- cyfaust/resources/architecture/faust/gui/qrcodegen.impl.h +1025 -0
- cyfaust/resources/architecture/faust/gui/ring-buffer.h +414 -0
- cyfaust/resources/architecture/faust/midi/RtMidi.cpp +3054 -0
- cyfaust/resources/architecture/faust/midi/RtMidi.h +1034 -0
- cyfaust/resources/architecture/faust/midi/bela-midi.h +266 -0
- cyfaust/resources/architecture/faust/midi/daisy-midi.h +116 -0
- cyfaust/resources/architecture/faust/midi/esp32-midi.h +185 -0
- cyfaust/resources/architecture/faust/midi/gramophone-midi.h +107 -0
- cyfaust/resources/architecture/faust/midi/iplug2-midi.h +148 -0
- cyfaust/resources/architecture/faust/midi/jack-midi.h +247 -0
- cyfaust/resources/architecture/faust/midi/juce-midi.h +275 -0
- cyfaust/resources/architecture/faust/midi/midi.h +475 -0
- cyfaust/resources/architecture/faust/midi/rt-midi.h +315 -0
- cyfaust/resources/architecture/faust/midi/teensy-midi.h +89 -0
- cyfaust/resources/architecture/faust/misc.h +106 -0
- cyfaust/resources/architecture/faust/sound-file.h +132 -0
- cyfaust/resources/architecture/faust/unity/AudioPluginInterface.h +301 -0
- cyfaust/resources/architecture/faust/vst/faust.h +141 -0
- cyfaust/resources/architecture/faust/vst/voice.h +43 -0
- cyfaust/resources/architecture/faust/vst/vstui.h +524 -0
- cyfaust/resources/architecture/faustvst.cpp +3435 -0
- cyfaust/resources/architecture/faustvstqt.h +91 -0
- cyfaust/resources/architecture/gen-json.cpp +76 -0
- cyfaust/resources/architecture/jack-console.cpp +267 -0
- cyfaust/resources/architecture/jack-gtk-ros.cpp +139 -0
- cyfaust/resources/architecture/jack-gtk.cpp +282 -0
- cyfaust/resources/architecture/jack-internal.cpp +560 -0
- cyfaust/resources/architecture/jack-qt-chain-footer.cpp +87 -0
- cyfaust/resources/architecture/jack-qt-chain-header.cpp +92 -0
- cyfaust/resources/architecture/jack-qt.cpp +281 -0
- cyfaust/resources/architecture/jack.rs +171 -0
- cyfaust/resources/architecture/juce/README.md +84 -0
- cyfaust/resources/architecture/juce/juce-plugin.cpp +809 -0
- cyfaust/resources/architecture/juce/juce-standalone.cpp +413 -0
- cyfaust/resources/architecture/juce/plugin/plugin-llvm.jucer +184 -0
- cyfaust/resources/architecture/juce/plugin/plugin.jucer +159 -0
- cyfaust/resources/architecture/juce/standalone/standalone-llvm.jucer +216 -0
- cyfaust/resources/architecture/juce/standalone/standalone.jucer +191 -0
- cyfaust/resources/architecture/ladspa.cpp +543 -0
- cyfaust/resources/architecture/latexheader.tex +65 -0
- cyfaust/resources/architecture/lv2.cpp +2090 -0
- cyfaust/resources/architecture/lv2qtgui.h +62 -0
- cyfaust/resources/architecture/lv2ui.cpp +1966 -0
- cyfaust/resources/architecture/max-msp/README.md +109 -0
- cyfaust/resources/architecture/max-msp/faustgen-wrapper-poly.maxpat +184 -0
- cyfaust/resources/architecture/max-msp/faustgen-wrapper.maxpat +163 -0
- cyfaust/resources/architecture/max-msp/max-msp.cpp +734 -0
- cyfaust/resources/architecture/max-msp/max-msp64.cpp +789 -0
- cyfaust/resources/architecture/max-msp/py2max/README.md +277 -0
- cyfaust/resources/architecture/max-msp/py2max/py2max/__init__.py +3 -0
- cyfaust/resources/architecture/max-msp/py2max/py2max/common.py +7 -0
- cyfaust/resources/architecture/max-msp/py2max/py2max/core.py +1387 -0
- cyfaust/resources/architecture/max-msp/py2max/py2max/maxclassdb.py +318 -0
- cyfaust/resources/architecture/max-msp/py2max/py2max/utils.py +20 -0
- cyfaust/resources/architecture/max-msp/rnbo.py +1591 -0
- cyfaust/resources/architecture/max-msp/sndfile/sndfile.h +857 -0
- cyfaust/resources/architecture/max-msp/ui.js +230 -0
- cyfaust/resources/architecture/max-msp/wrapper-poly.maxpat +153 -0
- cyfaust/resources/architecture/max-msp/wrapper.maxpat +131 -0
- cyfaust/resources/architecture/minimal-bench.cpp +100 -0
- cyfaust/resources/architecture/minimal-effect.c +149 -0
- cyfaust/resources/architecture/minimal-effect.cpp +70 -0
- cyfaust/resources/architecture/minimal-fixed-point.cpp +195 -0
- cyfaust/resources/architecture/minimal-static.cpp +160 -0
- cyfaust/resources/architecture/minimal.c +103 -0
- cyfaust/resources/architecture/minimal.cpp +84 -0
- cyfaust/resources/architecture/minimal.rs +223 -0
- cyfaust/resources/architecture/module.cpp +91 -0
- cyfaust/resources/architecture/octave.cpp +471 -0
- cyfaust/resources/architecture/oscio-gtk.cpp +115 -0
- cyfaust/resources/architecture/oscio-qt.cpp +121 -0
- cyfaust/resources/architecture/owl.cpp +345 -0
- cyfaust/resources/architecture/pa-gtk.cpp +119 -0
- cyfaust/resources/architecture/pa-qt.cpp +261 -0
- cyfaust/resources/architecture/path-printer.cpp +100 -0
- cyfaust/resources/architecture/plot.cpp +128 -0
- cyfaust/resources/architecture/portaudio.rs +192 -0
- cyfaust/resources/architecture/puredata.cpp +636 -0
- cyfaust/resources/architecture/ra-qt.cpp +238 -0
- cyfaust/resources/architecture/sam/fast_pow2.h +69 -0
- cyfaust/resources/architecture/sam/fastexp.h +140 -0
- cyfaust/resources/architecture/sam/samFaustDSP.cpp +125 -0
- cyfaust/resources/architecture/sam/samFaustDSP.h +107 -0
- cyfaust/resources/architecture/scheduler.cpp +1391 -0
- cyfaust/resources/architecture/sndfile.cpp +291 -0
- cyfaust/resources/architecture/supercollider.cpp +611 -0
- cyfaust/resources/architecture/teensy/README.md +13 -0
- cyfaust/resources/architecture/teensy/teensy.cpp +214 -0
- cyfaust/resources/architecture/teensy/teensy.h +71 -0
- cyfaust/resources/architecture/thread.h +373 -0
- cyfaust/resources/architecture/vcvrack/README.md +78 -0
- cyfaust/resources/architecture/vcvrack/template/.gitignore +6 -0
- cyfaust/resources/architecture/vcvrack/template/Makefile +22 -0
- cyfaust/resources/architecture/vcvrack/template/res/FaustModule.svg +299 -0
- cyfaust/resources/architecture/vcvrack/template/src/FaustModule.cpp +942 -0
- cyfaust/resources/architecture/vst.cpp +947 -0
- cyfaust/resources/libraries/aanl.lib +900 -0
- cyfaust/resources/libraries/all.lib +36 -0
- cyfaust/resources/libraries/analyzers.lib +980 -0
- cyfaust/resources/libraries/basics.lib +2681 -0
- cyfaust/resources/libraries/compressors.lib +1341 -0
- cyfaust/resources/libraries/delays.lib +401 -0
- cyfaust/resources/libraries/demos.lib +1556 -0
- cyfaust/resources/libraries/dx7.lib +1036 -0
- cyfaust/resources/libraries/effect.lib +1645 -0
- cyfaust/resources/libraries/envelopes.lib +666 -0
- cyfaust/resources/libraries/examples/README.md +13 -0
- cyfaust/resources/libraries/examples/ambisonics/fourSourcesToOcto.dsp +20 -0
- cyfaust/resources/libraries/examples/ambisonics/oneSourceToStereo.dsp +12 -0
- cyfaust/resources/libraries/examples/analysis/FFT.dsp +26 -0
- cyfaust/resources/libraries/examples/analysis/dbmeter.dsp +19 -0
- cyfaust/resources/libraries/examples/analysis/spectralLevel.dsp +8 -0
- cyfaust/resources/libraries/examples/analysis/spectralTiltLab.dsp +20 -0
- cyfaust/resources/libraries/examples/analysis/vumeter.dsp +18 -0
- cyfaust/resources/libraries/examples/autodiff/delay/diff.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/delay/gt.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/gain/diff.dsp +7 -0
- cyfaust/resources/libraries/examples/autodiff/gain/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/gain_dc/diff.dsp +7 -0
- cyfaust/resources/libraries/examples/autodiff/gain_dc/gt.dsp +4 -0
- cyfaust/resources/libraries/examples/autodiff/gain_exp/diff.dsp +9 -0
- cyfaust/resources/libraries/examples/autodiff/gain_exp/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/gain_pow/diff.dsp +9 -0
- cyfaust/resources/libraries/examples/autodiff/gain_pow/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/gain_pow_trig/diff.dsp +12 -0
- cyfaust/resources/libraries/examples/autodiff/gain_pow_trig/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/gain_sq/diff.dsp +7 -0
- cyfaust/resources/libraries/examples/autodiff/gain_sq/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/mem/diff.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/mem/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/noise.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/noop.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/one_zero/diff.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/one_zero/gt.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/ramp.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/recursion/diff.dsp +2 -0
- cyfaust/resources/libraries/examples/autodiff/recursion/gt.dsp +1 -0
- cyfaust/resources/libraries/examples/autodiff/recursion/target.dsp +13 -0
- cyfaust/resources/libraries/examples/autodiff/tremolo/diff.dsp +14 -0
- cyfaust/resources/libraries/examples/autodiff/tremolo/diffable.lib +7 -0
- cyfaust/resources/libraries/examples/autodiff/tremolo/gt.dsp +11 -0
- cyfaust/resources/libraries/examples/delayEcho/echo.dsp +15 -0
- cyfaust/resources/libraries/examples/delayEcho/quadEcho.dsp +21 -0
- cyfaust/resources/libraries/examples/delayEcho/smoothDelay.dsp +26 -0
- cyfaust/resources/libraries/examples/delayEcho/stereoEcho.dsp +16 -0
- cyfaust/resources/libraries/examples/delayEcho/tapiir.dsp +44 -0
- cyfaust/resources/libraries/examples/dynamic/compressor.dsp +8 -0
- cyfaust/resources/libraries/examples/dynamic/distortion.dsp +8 -0
- cyfaust/resources/libraries/examples/dynamic/gateCompressor.dsp +10 -0
- cyfaust/resources/libraries/examples/dynamic/noiseGate.dsp +8 -0
- cyfaust/resources/libraries/examples/dynamic/volume.dsp +15 -0
- cyfaust/resources/libraries/examples/filtering/APF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/BPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/DNN.dsp +25 -0
- cyfaust/resources/libraries/examples/filtering/HPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/LPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/bandFilter.dsp +44 -0
- cyfaust/resources/libraries/examples/filtering/cryBaby.dsp +4 -0
- cyfaust/resources/libraries/examples/filtering/diodeLadder.dsp +12 -0
- cyfaust/resources/libraries/examples/filtering/filterBank.dsp +6 -0
- cyfaust/resources/libraries/examples/filtering/graphicEqLab.dsp +10 -0
- cyfaust/resources/libraries/examples/filtering/highShelf.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/korg35HPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/korg35LPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/lfBoost.dsp +40 -0
- cyfaust/resources/libraries/examples/filtering/lowBoost.dsp +40 -0
- cyfaust/resources/libraries/examples/filtering/lowCut.dsp +40 -0
- cyfaust/resources/libraries/examples/filtering/lowShelf.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/moogHalfLadder.dsp +12 -0
- cyfaust/resources/libraries/examples/filtering/moogLadder.dsp +12 -0
- cyfaust/resources/libraries/examples/filtering/moogVCF.dsp +6 -0
- cyfaust/resources/libraries/examples/filtering/multibandFilter.dsp +14 -0
- cyfaust/resources/libraries/examples/filtering/notch.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/oberheim.dsp +14 -0
- cyfaust/resources/libraries/examples/filtering/oberheimBPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/oberheimBSF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/oberheimHPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/oberheimLPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/parametricEqLab.dsp +10 -0
- cyfaust/resources/libraries/examples/filtering/parametricEqualizer.dsp +6 -0
- cyfaust/resources/libraries/examples/filtering/peakNotch.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/peakingEQ.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/sallenKey2ndOrder.dsp +14 -0
- cyfaust/resources/libraries/examples/filtering/sallenKey2ndOrderBPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/sallenKey2ndOrderHPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/sallenKey2ndOrderLPF.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/sallenKeyOnePole.dsp +13 -0
- cyfaust/resources/libraries/examples/filtering/sallenKeyOnePoleHPF.dsp +12 -0
- cyfaust/resources/libraries/examples/filtering/sallenKeyOnePoleLPF.dsp +12 -0
- cyfaust/resources/libraries/examples/filtering/spectralTilt.dsp +8 -0
- cyfaust/resources/libraries/examples/filtering/vcfWahLab.dsp +12 -0
- cyfaust/resources/libraries/examples/filtering/vocoder.dsp +8 -0
- cyfaust/resources/libraries/examples/filtering/wahPedal.dsp +6 -0
- cyfaust/resources/libraries/examples/gameaudio/bubble.dsp +42 -0
- cyfaust/resources/libraries/examples/gameaudio/door.dsp +58 -0
- cyfaust/resources/libraries/examples/gameaudio/fire.dsp +46 -0
- cyfaust/resources/libraries/examples/gameaudio/insects.dsp +148 -0
- cyfaust/resources/libraries/examples/gameaudio/rain.dsp +27 -0
- cyfaust/resources/libraries/examples/gameaudio/wind.dsp +23 -0
- cyfaust/resources/libraries/examples/generator/filterOsc.dsp +8 -0
- cyfaust/resources/libraries/examples/generator/noise.dsp +52 -0
- cyfaust/resources/libraries/examples/generator/noiseMetadata.dsp +74 -0
- cyfaust/resources/libraries/examples/generator/osc.dsp +17 -0
- cyfaust/resources/libraries/examples/generator/osci.dsp +17 -0
- cyfaust/resources/libraries/examples/generator/sawtoothLab.dsp +8 -0
- cyfaust/resources/libraries/examples/generator/virtualAnalog.dsp +8 -0
- cyfaust/resources/libraries/examples/generator/virtualAnalogLab.dsp +10 -0
- cyfaust/resources/libraries/examples/misc/UITester.dsp +71 -0
- cyfaust/resources/libraries/examples/misc/autopan.dsp +59 -0
- cyfaust/resources/libraries/examples/misc/capture.dsp +24 -0
- cyfaust/resources/libraries/examples/misc/drumkit.dsp +36 -0
- cyfaust/resources/libraries/examples/misc/guitarix.dsp +184 -0
- cyfaust/resources/libraries/examples/misc/matrix.dsp +17 -0
- cyfaust/resources/libraries/examples/misc/midiTester.dsp +122 -0
- cyfaust/resources/libraries/examples/misc/mixer.dsp +27 -0
- cyfaust/resources/libraries/examples/misc/statespace.dsp +39 -0
- cyfaust/resources/libraries/examples/misc/switcher.dsp +20 -0
- cyfaust/resources/libraries/examples/misc/tester.dsp +32 -0
- cyfaust/resources/libraries/examples/misc/tester2.dsp +31 -0
- cyfaust/resources/libraries/examples/old/README.md +5 -0
- cyfaust/resources/libraries/examples/old/freeverb.dsp +109 -0
- cyfaust/resources/libraries/examples/old/rewriting/Makefile +21 -0
- cyfaust/resources/libraries/examples/old/rewriting/fact.dsp +3 -0
- cyfaust/resources/libraries/examples/old/rewriting/fold.dsp +61 -0
- cyfaust/resources/libraries/examples/old/rewriting/mesh.dsp +43 -0
- cyfaust/resources/libraries/examples/old/rewriting/mesh.pd +37 -0
- cyfaust/resources/libraries/examples/old/rewriting/sample.pd +12 -0
- cyfaust/resources/libraries/examples/old/rewriting/serial.dsp +7 -0
- cyfaust/resources/libraries/examples/old/rewriting/sum.dsp +55 -0
- cyfaust/resources/libraries/examples/old/rewriting/test.pd +48 -0
- cyfaust/resources/libraries/examples/phasing/flanger.dsp +8 -0
- cyfaust/resources/libraries/examples/phasing/phaser.dsp +8 -0
- cyfaust/resources/libraries/examples/phasing/phaserFlangerLab.dsp +12 -0
- cyfaust/resources/libraries/examples/physicalModeling/brass.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/brassMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/churchBell.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/clarinet.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/clarinetMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/djembeMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/elecGuitarMIDI.dsp +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/englishBell.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/NLFeks.dsp +91 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/NLFfm.dsp +70 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/README +125 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/bass.dsp +84 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/bass.h +91 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/blowBottle.dsp +102 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/bowed.dsp +114 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/brass.dsp +103 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/clarinet.dsp +110 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/flute.dsp +116 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/fluteStk.dsp +121 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/glassHarmonica.dsp +131 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/harpsi.dsp +90 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/harpsichord.h +185 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/instrument.h +114 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/modalBar.dsp +122 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/modalBar.h +48 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/audio-out.pd +33 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/bottle.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/clarinets.pd +15 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/canon/audio-out.pd +33 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/canon/bass.pd +162 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/canon/canon.pd +55 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/canon/flute.pd +343 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/canon/pachelbel.mid +0 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/daisy/audio-out.pd +33 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/daisy/daisy.mid +0 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/daisy/daisy.pd +45 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/daisy/piano.pd +205 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/daisy/voiceForm.pd +340 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/take5/audio-out.pd +33 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/take5/blowHole.pd +330 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/take5/piano.pd +205 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/take5/take5.mid +0 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/take5/take5.pd +45 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/turkish-march/audio-out.pd +33 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/turkish-march/harpsi.pd +204 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/turkish-march/turkish-march.mid +0 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/turkish-march/turkish-march.pd +31 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/what-a-friend/audio-out.pd +33 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/what-a-friend/bass.pd +162 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/what-a-friend/modalBar.pd +258 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/what-a-friend/piano.pd +205 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/what-a-friend/what-a-friend.pd +52 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fancy/what-a-friend/what_a_friend.mid +0 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/flutes.pd +15 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/fm.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/glassBare.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/harpsichord-poly.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/ironBare.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/midi-in.pd +111 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/modal.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/osc.pd +26 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/piano-poly.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/plucked.pd +20 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/saxophone.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/tibetan.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/trumpet.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/violin.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/voiceSynth.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/pd-patches/woodenBare.pd +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/phonemes.h +189 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/piano.dsp +255 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/piano.h +751 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/saxophony.dsp +114 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/sitar.dsp +48 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/tibetanBowl.dsp +155 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/tunedBar.dsp +123 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/uniBar.dsp +100 -0
- cyfaust/resources/libraries/examples/physicalModeling/faust-stk/voiceForm.dsp +125 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/1dDampedWaveEquation.dsp +43 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/2dKirchhoffThinPlate.dsp +75 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/BowedString.dsp +61 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/ControllableNonPhysicalString.dsp +72 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/HammeredString.dsp +74 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/PianoHammeredString.dsp +85 -0
- cyfaust/resources/libraries/examples/physicalModeling/fds/StiffString.dsp +54 -0
- cyfaust/resources/libraries/examples/physicalModeling/flute.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/fluteMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/frenchBell.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/germanBell.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/guitarMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/karplus.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/marimbaMIDI.dsp +10 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/00_BasicOscillator/harmonicOscillator.dsp +58 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/00_BasicOscillator/harmonicOscillator2.dsp +62 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/00_BasicOscillator/harmonicOscillator3.dsp +65 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/01_ParamControl/paramOsc.dsp +63 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/02_AudioParamControl/audioParamOsc.dsp +63 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/03_HammerTime/hammerOsc.dsp +71 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/04_Gravity/bouncingOsc.dsp +64 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/05_PluckedOscillator/pluckedOsc.dsp +57 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/06_BowedOscillator/bowedOsc.dsp +65 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/07_NonLinearOscillator/nlOsc.dsp +78 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/08_TwoMassChain/2massChain.dsp +75 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/09_TinyString/tinyString.dsp +101 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/10_PluckedString/pluckedString.dsp +678 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/11_BowedString/bowedString.dsp +671 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/12_TriangleMesh/triangleMesh.dsp +448 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/13_Construction/construction.dsp +1036 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/14_Polyphonic/polyTriangle.dsp +79 -0
- cyfaust/resources/libraries/examples/physicalModeling/mi-faust/15_PhysicalLFO/physicalLFO.dsp +107 -0
- cyfaust/resources/libraries/examples/physicalModeling/modularInterpInstrMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/nylonGuitarMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/old/harpe.dsp +45 -0
- cyfaust/resources/libraries/examples/physicalModeling/old/karplus.dsp +34 -0
- cyfaust/resources/libraries/examples/physicalModeling/old/karplus32.dsp +47 -0
- cyfaust/resources/libraries/examples/physicalModeling/russianBell.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/standardBell.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/violin.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/violinMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/vocalBP.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/vocalBPMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/vocalFOF.dsp +8 -0
- cyfaust/resources/libraries/examples/physicalModeling/vocalFOFMIDI.dsp +8 -0
- cyfaust/resources/libraries/examples/pitchShifting/pitchShifter.dsp +20 -0
- cyfaust/resources/libraries/examples/psychoacoustic/harmonicExciter.dsp +10 -0
- cyfaust/resources/libraries/examples/quantizing/quantizedChords.dsp +49 -0
- cyfaust/resources/libraries/examples/reverb/dattorro.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/fdnRev.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/freeverb.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/greyhole.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/jprev.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/reverbDesigner.dsp +12 -0
- cyfaust/resources/libraries/examples/reverb/reverbTester.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/zitaRev.dsp +8 -0
- cyfaust/resources/libraries/examples/reverb/zitaRevFDN.dsp +8 -0
- cyfaust/resources/libraries/examples/smartKeyboard/acGuitar.dsp +100 -0
- cyfaust/resources/libraries/examples/smartKeyboard/associatedEffects/elecGuitarEffect.dsp +8 -0
- cyfaust/resources/libraries/examples/smartKeyboard/associatedEffects/myEffect.dsp +5 -0
- cyfaust/resources/libraries/examples/smartKeyboard/associatedEffects/reverb.dsp +5 -0
- cyfaust/resources/libraries/examples/smartKeyboard/bells.dsp +80 -0
- cyfaust/resources/libraries/examples/smartKeyboard/bowed.dsp +87 -0
- cyfaust/resources/libraries/examples/smartKeyboard/brass.dsp +82 -0
- cyfaust/resources/libraries/examples/smartKeyboard/clarinet.dsp +113 -0
- cyfaust/resources/libraries/examples/smartKeyboard/crazyGuiro.dsp +96 -0
- cyfaust/resources/libraries/examples/smartKeyboard/drums.dsp +74 -0
- cyfaust/resources/libraries/examples/smartKeyboard/dubDub.dsp +87 -0
- cyfaust/resources/libraries/examples/smartKeyboard/elecGuitar.dsp +67 -0
- cyfaust/resources/libraries/examples/smartKeyboard/fm.dsp +78 -0
- cyfaust/resources/libraries/examples/smartKeyboard/frog.dsp +74 -0
- cyfaust/resources/libraries/examples/smartKeyboard/harp.dsp +84 -0
- cyfaust/resources/libraries/examples/smartKeyboard/midiOnly.dsp +62 -0
- cyfaust/resources/libraries/examples/smartKeyboard/multiSynth.dsp +75 -0
- cyfaust/resources/libraries/examples/smartKeyboard/toy.dsp +71 -0
- cyfaust/resources/libraries/examples/smartKeyboard/trumpet.dsp +59 -0
- cyfaust/resources/libraries/examples/smartKeyboard/turenas.dsp +114 -0
- cyfaust/resources/libraries/examples/smartKeyboard/violin.dsp +91 -0
- cyfaust/resources/libraries/examples/smartKeyboard/violin2.dsp +84 -0
- cyfaust/resources/libraries/examples/smartKeyboard/vocal.dsp +43 -0
- cyfaust/resources/libraries/examples/spat/panpot.dsp +17 -0
- cyfaust/resources/libraries/examples/spat/spat.dsp +25 -0
- cyfaust/resources/libraries/fds.lib +535 -0
- cyfaust/resources/libraries/filter.lib +1710 -0
- cyfaust/resources/libraries/filters.lib +3125 -0
- cyfaust/resources/libraries/hoa.lib +1081 -0
- cyfaust/resources/libraries/instruments.lib +263 -0
- cyfaust/resources/libraries/interpolators.lib +675 -0
- cyfaust/resources/libraries/math.lib +602 -0
- cyfaust/resources/libraries/maths.lib +798 -0
- cyfaust/resources/libraries/maxmsp.lib +237 -0
- cyfaust/resources/libraries/mi.lib +528 -0
- cyfaust/resources/libraries/misceffects.lib +998 -0
- cyfaust/resources/libraries/music.lib +496 -0
- cyfaust/resources/libraries/noises.lib +487 -0
- cyfaust/resources/libraries/oscillator.lib +450 -0
- cyfaust/resources/libraries/oscillators.lib +1838 -0
- cyfaust/resources/libraries/phaflangers.lib +235 -0
- cyfaust/resources/libraries/physmodels.lib +3990 -0
- cyfaust/resources/libraries/platform.lib +59 -0
- cyfaust/resources/libraries/quantizers.lib +310 -0
- cyfaust/resources/libraries/reducemaps.lib +235 -0
- cyfaust/resources/libraries/reverbs.lib +686 -0
- cyfaust/resources/libraries/routes.lib +262 -0
- cyfaust/resources/libraries/sf.lib +53 -0
- cyfaust/resources/libraries/signals.lib +570 -0
- cyfaust/resources/libraries/soundfiles.lib +234 -0
- cyfaust/resources/libraries/spats.lib +173 -0
- cyfaust/resources/libraries/stdfaust.lib +38 -0
- cyfaust/resources/libraries/synths.lib +322 -0
- cyfaust/resources/libraries/tonestacks.lib +427 -0
- cyfaust/resources/libraries/tubes.lib +5039 -0
- cyfaust/resources/libraries/vaeffects.lib +984 -0
- cyfaust/resources/libraries/version.lib +22 -0
- cyfaust/resources/libraries/wdmodels.lib +2276 -0
- cyfaust/resources/libraries/webaudio.lib +402 -0
- cyfaust/signal.pxd +44 -0
- cyfaust/signal.pyx +1993 -0
- cyfaust-0.1.0.dist-info/METADATA +355 -0
- cyfaust-0.1.0.dist-info/RECORD +693 -0
- cyfaust-0.1.0.dist-info/WHEEL +5 -0
- cyfaust-0.1.0.dist-info/entry_points.txt +3 -0
- cyfaust-0.1.0.dist-info/licenses/LICENSE +26 -0
cyfaust/resources/libraries/examples/physicalModeling/mi-faust/13_Construction/construction.dsp
ADDED
|
@@ -0,0 +1,1036 @@
|
|
|
1
|
+
declare name "Strange Physical Construction";
|
|
2
|
+
declare author "James Leonard";
|
|
3
|
+
declare date "April 2020";
|
|
4
|
+
|
|
5
|
+
/* ========= DESCRITPION =============
|
|
6
|
+
|
|
7
|
+
A triangle mesh (fixed corners) struck by a hammer, connected (through a slightly non-linear spring)
|
|
8
|
+
to a resonant square mesh (fixed corners).
|
|
9
|
+
- inputs: Force impulse applied to the hammer
|
|
10
|
+
- outputs: one listening point on the triangle, another on the resonnant mesh.
|
|
11
|
+
- controls: triangle stiffness and daming, square mesh stiffness and damping, hammer force impulse scaling.
|
|
12
|
+
|
|
13
|
+
Note: the block diagram of the model will give you nightmares.
|
|
14
|
+
*/
|
|
15
|
+
|
|
16
|
+
import("stdfaust.lib");
|
|
17
|
+
|
|
18
|
+
in1 = button("Force Impulse"): ba.impulsify * hslider("Force Scaling", 0.5, 0.01, 0.9, 0.001) * -1;
|
|
19
|
+
|
|
20
|
+
OutGain = 1;
|
|
21
|
+
|
|
22
|
+
t_M = 1;
|
|
23
|
+
t_K = hslider("Triangle Stiffness", 0.1, 0.001, 0.2, 0.0001);
|
|
24
|
+
t_Z = hslider("Triangle Damping", 0.0001, 0.00, 0.0008, 0.000001);
|
|
25
|
+
t_Zo = 0.00005;
|
|
26
|
+
me_M = 1;
|
|
27
|
+
me_K = hslider("Mesh Stiffness", 0.1, 0.001, 0.2, 0.0001);
|
|
28
|
+
me_Z = hslider("Mesh Damping", 0.0001, 0.00, 0.0008, 0.000001);
|
|
29
|
+
me_Zo = 0.00005;
|
|
30
|
+
|
|
31
|
+
model = (
|
|
32
|
+
mi.mass(0.3, 0, 1., 1.),
|
|
33
|
+
mi.ground(1.),
|
|
34
|
+
mi.ground(0),
|
|
35
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
36
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
37
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
38
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
39
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
40
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
41
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
42
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
43
|
+
mi.ground(0),
|
|
44
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
45
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
46
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
47
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
48
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
49
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
50
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
51
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
52
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
53
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
54
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
55
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
56
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
57
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
58
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
59
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
60
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
61
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
62
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
63
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
64
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
65
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
66
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
67
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
68
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
69
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
70
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
71
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
72
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
73
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
74
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
75
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
76
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
77
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
78
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
79
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
80
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
81
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
82
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
83
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
84
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
85
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
86
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
87
|
+
mi.oscil(t_M, 0, t_Zo, 0, 0., 0.),
|
|
88
|
+
mi.ground(0),
|
|
89
|
+
mi.ground(0),
|
|
90
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
91
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
92
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
93
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
94
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
95
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
96
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
97
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
98
|
+
mi.ground(0),
|
|
99
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
100
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
101
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
102
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
103
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
104
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
105
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
106
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
107
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
108
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
109
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
110
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
111
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
112
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
113
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
114
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
115
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
116
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
117
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
118
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
119
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
120
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
121
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
122
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
123
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
124
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
125
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
126
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
127
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
128
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
129
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
130
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
131
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
132
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
133
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
134
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
135
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
136
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
137
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
138
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
139
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
140
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
141
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
142
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
143
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
144
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
145
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
146
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
147
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
148
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
149
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
150
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
151
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
152
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
153
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
154
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
155
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
156
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
157
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
158
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
159
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
160
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
161
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
162
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
163
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
164
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
165
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
166
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
167
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
168
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
169
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
170
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
171
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
172
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
173
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
174
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
175
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
176
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
177
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
178
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
179
|
+
mi.ground(0),
|
|
180
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
181
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
182
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
183
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
184
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
185
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
186
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
187
|
+
mi.oscil(me_M, 0, me_Zo, 0, 0., 0.),
|
|
188
|
+
mi.ground(0),
|
|
189
|
+
par(i, nbFrcIn,_):
|
|
190
|
+
RoutingMassToLink ,
|
|
191
|
+
par(i, nbFrcIn,_):
|
|
192
|
+
mi.springDamper(0.0001, 0.05, 1., 1.),
|
|
193
|
+
mi.nlCollisionClipped(0.0, 0.01, 0.5, 0.001, 0, 0., 1.),
|
|
194
|
+
mi.nlSpringDamperClipped(0.01, 0.01, 0.2, 0., 0., 0.),
|
|
195
|
+
mi.springDamper(t_K, t_Z, 0, 0.),
|
|
196
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
197
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
198
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
199
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
200
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
201
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
202
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
203
|
+
mi.springDamper(t_K, t_Z, 0., 0),
|
|
204
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
205
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
206
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
207
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
208
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
209
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
210
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
211
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
212
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
213
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
214
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
215
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
216
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
217
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
218
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
219
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
220
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
221
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
222
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
223
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
224
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
225
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
226
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
227
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
228
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
229
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
230
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
231
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
232
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
233
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
234
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
235
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
236
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
237
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
238
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
239
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
240
|
+
mi.springDamper(t_K, t_Z, 0, 0.),
|
|
241
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
242
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
243
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
244
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
245
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
246
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
247
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
248
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
249
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
250
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
251
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
252
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
253
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
254
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
255
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
256
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
257
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
258
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
259
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
260
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
261
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
262
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
263
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
264
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
265
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
266
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
267
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
268
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
269
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
270
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
271
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
272
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
273
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
274
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
275
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
276
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
277
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
278
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
279
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
280
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
281
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
282
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
283
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
284
|
+
mi.springDamper(t_K, t_Z, 0., 0),
|
|
285
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
286
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
287
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
288
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
289
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
290
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
291
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
292
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
293
|
+
mi.springDamper(t_K, t_Z, 0, 0.),
|
|
294
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
295
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
296
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
297
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
298
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
299
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
300
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
301
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
302
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
303
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
304
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
305
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
306
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
307
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
308
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
309
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
310
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
311
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
312
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
313
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
314
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
315
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
316
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
317
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
318
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
319
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
320
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
321
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
322
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
323
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
324
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
325
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
326
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
327
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
328
|
+
mi.springDamper(t_K, t_Z, 0., 0.),
|
|
329
|
+
mi.springDamper(t_K, t_Z, 0., 0),
|
|
330
|
+
mi.springDamper(me_K, me_Z, 0, 0.),
|
|
331
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
332
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
333
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
334
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
335
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
336
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
337
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
338
|
+
mi.springDamper(me_K, me_Z, 0., 0),
|
|
339
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
340
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
341
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
342
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
343
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
344
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
345
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
346
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
347
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
348
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
349
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
350
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
351
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
352
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
353
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
354
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
355
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
356
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
357
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
358
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
359
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
360
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
361
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
362
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
363
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
364
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
365
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
366
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
367
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
368
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
369
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
370
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
371
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
372
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
373
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
374
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
375
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
376
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
377
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
378
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
379
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
380
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
381
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
382
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
383
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
384
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
385
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
386
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
387
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
388
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
389
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
390
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
391
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
392
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
393
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
394
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
395
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
396
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
397
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
398
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
399
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
400
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
401
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
402
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
403
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
404
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
405
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
406
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
407
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
408
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
409
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
410
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
411
|
+
mi.springDamper(me_K, me_Z, 0, 0.),
|
|
412
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
413
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
414
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
415
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
416
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
417
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
418
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
419
|
+
mi.springDamper(me_K, me_Z, 0., 0),
|
|
420
|
+
mi.springDamper(me_K, me_Z, 0, 0.),
|
|
421
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
422
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
423
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
424
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
425
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
426
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
427
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
428
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
429
|
+
mi.springDamper(me_K, me_Z, 0, 0.),
|
|
430
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
431
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
432
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
433
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
434
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
435
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
436
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
437
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
438
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
439
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
440
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
441
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
442
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
443
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
444
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
445
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
446
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
447
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
448
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
449
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
450
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
451
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
452
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
453
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
454
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
455
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
456
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
457
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
458
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
459
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
460
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
461
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
462
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
463
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
464
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
465
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
466
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
467
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
468
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
469
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
470
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
471
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
472
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
473
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
474
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
475
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
476
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
477
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
478
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
479
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
480
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
481
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
482
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
483
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
484
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
485
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
486
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
487
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
488
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
489
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
490
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
491
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
492
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
493
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
494
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
495
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
496
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
497
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
498
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
499
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
500
|
+
mi.springDamper(me_K, me_Z, 0., 0),
|
|
501
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
502
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
503
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
504
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
505
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
506
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
507
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
508
|
+
mi.springDamper(me_K, me_Z, 0., 0.),
|
|
509
|
+
mi.springDamper(me_K, me_Z, 0., 0),
|
|
510
|
+
par(i, nbOut+nbFrcIn, _):
|
|
511
|
+
RoutingLinkToMass
|
|
512
|
+
)~par(i, nbMass, _):
|
|
513
|
+
par(i, nbMass, !), par(i, nbOut , _)
|
|
514
|
+
with{
|
|
515
|
+
RoutingMassToLink(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11, m12, m13, m14, m15, m16, m17, m18, m19, m20, m21, m22, m23, m24, m25, m26, m27, m28, m29, m30, m31, m32, m33, m34, m35, m36, m37, m38, m39, m40, m41, m42, m43, m44, m45, m46, m47, m48, m49, m50, m51, m52, m53, m54, m55, m56, m57, m58, m59, m60, m61, m62, m63, m64, m65, m66, m67, m68, m69, m70, m71, m72, m73, m74, m75, m76, m77, m78, m79, m80, m81, m82, m83, m84, m85, m86, m87, m88, m89, m90, m91, m92, m93, m94, m95, m96, m97, m98, m99, m100, m101, m102, m103, m104, m105, m106, m107, m108, m109, m110, m111, m112, m113, m114, m115, m116, m117, m118, m119, m120, m121, m122, m123, m124, m125, m126, m127, m128, m129, m130, m131, m132, m133, m134, m135, m136, m137, m138, m139, m140, m141, m142, m143, m144, m145, m146, m147, m148, m149, m150, m151, m152, m153, m154, m155, m156) = /* routed positions */ m1, m0, m39, m0, m49, m94, m2, m3, m3, m4, m4, m5, m5, m6, m6, m7, m7, m8, m8, m9, m9, m10, m10, m11, m12, m13, m13, m14, m14, m15, m15, m16, m16, m17, m17, m18, m18, m19, m19, m20, m21, m22, m22, m23, m23, m24, m24, m25, m25, m26, m26, m27, m27, m28, m29, m30, m30, m31, m31, m32, m32, m33, m33, m34, m34, m35, m36, m37, m37, m38, m38, m39, m39, m40, m40, m41, m42, m43, m43, m44, m44, m45, m45, m46, m47, m48, m48, m49, m49, m50, m51, m52, m52, m53, m54, m55, m2, m12, m3, m13, m4, m14, m5, m15, m6, m16, m7, m17, m8, m18, m9, m19, m10, m20, m12, m21, m13, m22, m14, m23, m15, m24, m16, m25, m17, m26, m18, m27, m19, m28, m21, m29, m22, m30, m23, m31, m24, m32, m25, m33, m26, m34, m27, m35, m29, m36, m30, m37, m31, m38, m32, m39, m33, m40, m34, m41, m36, m42, m37, m43, m38, m44, m39, m45, m40, m46, m42, m47, m43, m48, m44, m49, m45, m50, m47, m51, m48, m52, m49, m53, m51, m54, m52, m55, m54, m56, m3, m12, m4, m13, m5, m14, m6, m15, m7, m16, m8, m17, m9, m18, m10, m19, m11, m20, m13, m21, m14, m22, m15, m23, m16, m24, m17, m25, m18, m26, m19, m27, m20, m28, m22, m29, m23, m30, m24, m31, m25, m32, m26, m33, m27, m34, m28, m35, m30, m36, m31, m37, m32, m38, m33, m39, m34, m40, m35, m41, m37, m42, m38, m43, m39, m44, m40, m45, m41, m46, m43, m47, m44, m48, m45, m49, m46, m50, m48, m51, m49, m52, m50, m53, m52, m54, m53, m55, m55, m56, m57, m58, m58, m59, m59, m60, m60, m61, m61, m62, m62, m63, m63, m64, m64, m65, m65, m66, m67, m68, m68, m69, m69, m70, m70, m71, m71, m72, m72, m73, m73, m74, m74, m75, m75, m76, m77, m78, m78, m79, m79, m80, m80, m81, m81, m82, m82, m83, m83, m84, m84, m85, m85, m86, m87, m88, m88, m89, m89, m90, m90, m91, m91, m92, m92, m93, m93, m94, m94, m95, m95, m96, m97, m98, m98, m99, m99, m100, m100, m101, m101, m102, m102, m103, m103, m104, m104, m105, m105, m106, m107, m108, m108, m109, m109, m110, m110, m111, m111, m112, m112, m113, m113, m114, m114, m115, m115, m116, m117, m118, m118, m119, m119, m120, m120, m121, m121, m122, m122, m123, m123, m124, m124, m125, m125, m126, m127, m128, m128, m129, m129, m130, m130, m131, m131, m132, m132, m133, m133, m134, m134, m135, m135, m136, m137, m138, m138, m139, m139, m140, m140, m141, m141, m142, m142, m143, m143, m144, m144, m145, m145, m146, m147, m148, m148, m149, m149, m150, m150, m151, m151, m152, m152, m153, m153, m154, m154, m155, m155, m156, m57, m67, m58, m68, m59, m69, m60, m70, m61, m71, m62, m72, m63, m73, m64, m74, m65, m75, m66, m76, m67, m77, m68, m78, m69, m79, m70, m80, m71, m81, m72, m82, m73, m83, m74, m84, m75, m85, m76, m86, m77, m87, m78, m88, m79, m89, m80, m90, m81, m91, m82, m92, m83, m93, m84, m94, m85, m95, m86, m96, m87, m97, m88, m98, m89, m99, m90, m100, m91, m101, m92, m102, m93, m103, m94, m104, m95, m105, m96, m106, m97, m107, m98, m108, m99, m109, m100, m110, m101, m111, m102, m112, m103, m113, m104, m114, m105, m115, m106, m116, m107, m117, m108, m118, m109, m119, m110, m120, m111, m121, m112, m122, m113, m123, m114, m124, m115, m125, m116, m126, m117, m127, m118, m128, m119, m129, m120, m130, m121, m131, m122, m132, m123, m133, m124, m134, m125, m135, m126, m136, m127, m137, m128, m138, m129, m139, m130, m140, m131, m141, m132, m142, m133, m143, m134, m144, m135, m145, m136, m146, m137, m147, m138, m148, m139, m149, m140, m150, m141, m151, m142, m152, m143, m153, m144, m154, m145, m155, m146, m156, /* outputs */ m112, m22;
|
|
516
|
+
RoutingLinkToMass(l0_f1, l0_f2, l1_f1, l1_f2, l2_f1, l2_f2, l3_f1, l3_f2, l4_f1, l4_f2, l5_f1, l5_f2, l6_f1, l6_f2, l7_f1, l7_f2, l8_f1, l8_f2, l9_f1, l9_f2, l10_f1, l10_f2, l11_f1, l11_f2, l12_f1, l12_f2, l13_f1, l13_f2, l14_f1, l14_f2, l15_f1, l15_f2, l16_f1, l16_f2, l17_f1, l17_f2, l18_f1, l18_f2, l19_f1, l19_f2, l20_f1, l20_f2, l21_f1, l21_f2, l22_f1, l22_f2, l23_f1, l23_f2, l24_f1, l24_f2, l25_f1, l25_f2, l26_f1, l26_f2, l27_f1, l27_f2, l28_f1, l28_f2, l29_f1, l29_f2, l30_f1, l30_f2, l31_f1, l31_f2, l32_f1, l32_f2, l33_f1, l33_f2, l34_f1, l34_f2, l35_f1, l35_f2, l36_f1, l36_f2, l37_f1, l37_f2, l38_f1, l38_f2, l39_f1, l39_f2, l40_f1, l40_f2, l41_f1, l41_f2, l42_f1, l42_f2, l43_f1, l43_f2, l44_f1, l44_f2, l45_f1, l45_f2, l46_f1, l46_f2, l47_f1, l47_f2, l48_f1, l48_f2, l49_f1, l49_f2, l50_f1, l50_f2, l51_f1, l51_f2, l52_f1, l52_f2, l53_f1, l53_f2, l54_f1, l54_f2, l55_f1, l55_f2, l56_f1, l56_f2, l57_f1, l57_f2, l58_f1, l58_f2, l59_f1, l59_f2, l60_f1, l60_f2, l61_f1, l61_f2, l62_f1, l62_f2, l63_f1, l63_f2, l64_f1, l64_f2, l65_f1, l65_f2, l66_f1, l66_f2, l67_f1, l67_f2, l68_f1, l68_f2, l69_f1, l69_f2, l70_f1, l70_f2, l71_f1, l71_f2, l72_f1, l72_f2, l73_f1, l73_f2, l74_f1, l74_f2, l75_f1, l75_f2, l76_f1, l76_f2, l77_f1, l77_f2, l78_f1, l78_f2, l79_f1, l79_f2, l80_f1, l80_f2, l81_f1, l81_f2, l82_f1, l82_f2, l83_f1, l83_f2, l84_f1, l84_f2, l85_f1, l85_f2, l86_f1, l86_f2, l87_f1, l87_f2, l88_f1, l88_f2, l89_f1, l89_f2, l90_f1, l90_f2, l91_f1, l91_f2, l92_f1, l92_f2, l93_f1, l93_f2, l94_f1, l94_f2, l95_f1, l95_f2, l96_f1, l96_f2, l97_f1, l97_f2, l98_f1, l98_f2, l99_f1, l99_f2, l100_f1, l100_f2, l101_f1, l101_f2, l102_f1, l102_f2, l103_f1, l103_f2, l104_f1, l104_f2, l105_f1, l105_f2, l106_f1, l106_f2, l107_f1, l107_f2, l108_f1, l108_f2, l109_f1, l109_f2, l110_f1, l110_f2, l111_f1, l111_f2, l112_f1, l112_f2, l113_f1, l113_f2, l114_f1, l114_f2, l115_f1, l115_f2, l116_f1, l116_f2, l117_f1, l117_f2, l118_f1, l118_f2, l119_f1, l119_f2, l120_f1, l120_f2, l121_f1, l121_f2, l122_f1, l122_f2, l123_f1, l123_f2, l124_f1, l124_f2, l125_f1, l125_f2, l126_f1, l126_f2, l127_f1, l127_f2, l128_f1, l128_f2, l129_f1, l129_f2, l130_f1, l130_f2, l131_f1, l131_f2, l132_f1, l132_f2, l133_f1, l133_f2, l134_f1, l134_f2, l135_f1, l135_f2, l136_f1, l136_f2, l137_f1, l137_f2, l138_f1, l138_f2, l139_f1, l139_f2, l140_f1, l140_f2, l141_f1, l141_f2, l142_f1, l142_f2, l143_f1, l143_f2, l144_f1, l144_f2, l145_f1, l145_f2, l146_f1, l146_f2, l147_f1, l147_f2, l148_f1, l148_f2, l149_f1, l149_f2, l150_f1, l150_f2, l151_f1, l151_f2, l152_f1, l152_f2, l153_f1, l153_f2, l154_f1, l154_f2, l155_f1, l155_f2, l156_f1, l156_f2, l157_f1, l157_f2, l158_f1, l158_f2, l159_f1, l159_f2, l160_f1, l160_f2, l161_f1, l161_f2, l162_f1, l162_f2, l163_f1, l163_f2, l164_f1, l164_f2, l165_f1, l165_f2, l166_f1, l166_f2, l167_f1, l167_f2, l168_f1, l168_f2, l169_f1, l169_f2, l170_f1, l170_f2, l171_f1, l171_f2, l172_f1, l172_f2, l173_f1, l173_f2, l174_f1, l174_f2, l175_f1, l175_f2, l176_f1, l176_f2, l177_f1, l177_f2, l178_f1, l178_f2, l179_f1, l179_f2, l180_f1, l180_f2, l181_f1, l181_f2, l182_f1, l182_f2, l183_f1, l183_f2, l184_f1, l184_f2, l185_f1, l185_f2, l186_f1, l186_f2, l187_f1, l187_f2, l188_f1, l188_f2, l189_f1, l189_f2, l190_f1, l190_f2, l191_f1, l191_f2, l192_f1, l192_f2, l193_f1, l193_f2, l194_f1, l194_f2, l195_f1, l195_f2, l196_f1, l196_f2, l197_f1, l197_f2, l198_f1, l198_f2, l199_f1, l199_f2, l200_f1, l200_f2, l201_f1, l201_f2, l202_f1, l202_f2, l203_f1, l203_f2, l204_f1, l204_f2, l205_f1, l205_f2, l206_f1, l206_f2, l207_f1, l207_f2, l208_f1, l208_f2, l209_f1, l209_f2, l210_f1, l210_f2, l211_f1, l211_f2, l212_f1, l212_f2, l213_f1, l213_f2, l214_f1, l214_f2, l215_f1, l215_f2, l216_f1, l216_f2, l217_f1, l217_f2, l218_f1, l218_f2, l219_f1, l219_f2, l220_f1, l220_f2, l221_f1, l221_f2, l222_f1, l222_f2, l223_f1, l223_f2, l224_f1, l224_f2, l225_f1, l225_f2, l226_f1, l226_f2, l227_f1, l227_f2, l228_f1, l228_f2, l229_f1, l229_f2, l230_f1, l230_f2, l231_f1, l231_f2, l232_f1, l232_f2, l233_f1, l233_f2, l234_f1, l234_f2, l235_f1, l235_f2, l236_f1, l236_f2, l237_f1, l237_f2, l238_f1, l238_f2, l239_f1, l239_f2, l240_f1, l240_f2, l241_f1, l241_f2, l242_f1, l242_f2, l243_f1, l243_f2, l244_f1, l244_f2, l245_f1, l245_f2, l246_f1, l246_f2, l247_f1, l247_f2, l248_f1, l248_f2, l249_f1, l249_f2, l250_f1, l250_f2, l251_f1, l251_f2, l252_f1, l252_f2, l253_f1, l253_f2, l254_f1, l254_f2, l255_f1, l255_f2, l256_f1, l256_f2, l257_f1, l257_f2, l258_f1, l258_f2, l259_f1, l259_f2, l260_f1, l260_f2, l261_f1, l261_f2, l262_f1, l262_f2, l263_f1, l263_f2, l264_f1, l264_f2, l265_f1, l265_f2, l266_f1, l266_f2, l267_f1, l267_f2, l268_f1, l268_f2, l269_f1, l269_f2, l270_f1, l270_f2, l271_f1, l271_f2, l272_f1, l272_f2, l273_f1, l273_f2, l274_f1, l274_f2, l275_f1, l275_f2, l276_f1, l276_f2, l277_f1, l277_f2, l278_f1, l278_f2, l279_f1, l279_f2, l280_f1, l280_f2, l281_f1, l281_f2, l282_f1, l282_f2, l283_f1, l283_f2, l284_f1, l284_f2, l285_f1, l285_f2, l286_f1, l286_f2, l287_f1, l287_f2, l288_f1, l288_f2, l289_f1, l289_f2, l290_f1, l290_f2, l291_f1, l291_f2, l292_f1, l292_f2, l293_f1, l293_f2, l294_f1, l294_f2, l295_f1, l295_f2, l296_f1, l296_f2, l297_f1, l297_f2, l298_f1, l298_f2, l299_f1, l299_f2, l300_f1, l300_f2, l301_f1, l301_f2, l302_f1, l302_f2, l303_f1, l303_f2, l304_f1, l304_f2, l305_f1, l305_f2, l306_f1, l306_f2, l307_f1, l307_f2, l308_f1, l308_f2, l309_f1, l309_f2, l310_f1, l310_f2, l311_f1, l311_f2, l312_f1, l312_f2, l313_f1, l313_f2, l314_f1, l314_f2, l315_f1, l315_f2, l316_f1, l316_f2, l317_f1, l317_f2, p_out1, p_out2, f_in1) = /* routed forces */ f_in1 + l0_f2 + l1_f2, l0_f1, l3_f1 + l48_f1, l3_f2 + l4_f1 + l49_f1 + l93_f1, l4_f2 + l5_f1 + l50_f1 + l94_f1, l5_f2 + l6_f1 + l51_f1 + l95_f1, l6_f2 + l7_f1 + l52_f1 + l96_f1, l7_f2 + l8_f1 + l53_f1 + l97_f1, l8_f2 + l9_f1 + l54_f1 + l98_f1, l9_f2 + l10_f1 + l55_f1 + l99_f1, l10_f2 + l11_f1 + l56_f1 + l100_f1, l11_f2 + l101_f1, l12_f1 + l48_f2 + l57_f1 + l93_f2, l12_f2 + l13_f1 + l49_f2 + l58_f1 + l94_f2 + l102_f1, l13_f2 + l14_f1 + l50_f2 + l59_f1 + l95_f2 + l103_f1, l14_f2 + l15_f1 + l51_f2 + l60_f1 + l96_f2 + l104_f1, l15_f2 + l16_f1 + l52_f2 + l61_f1 + l97_f2 + l105_f1, l16_f2 + l17_f1 + l53_f2 + l62_f1 + l98_f2 + l106_f1, l17_f2 + l18_f1 + l54_f2 + l63_f1 + l99_f2 + l107_f1, l18_f2 + l19_f1 + l55_f2 + l64_f1 + l100_f2 + l108_f1, l19_f2 + l56_f2 + l101_f2 + l109_f1, l20_f1 + l57_f2 + l65_f1 + l102_f2, l20_f2 + l21_f1 + l58_f2 + l66_f1 + l103_f2 + l110_f1, l21_f2 + l22_f1 + l59_f2 + l67_f1 + l104_f2 + l111_f1, l22_f2 + l23_f1 + l60_f2 + l68_f1 + l105_f2 + l112_f1, l23_f2 + l24_f1 + l61_f2 + l69_f1 + l106_f2 + l113_f1, l24_f2 + l25_f1 + l62_f2 + l70_f1 + l107_f2 + l114_f1, l25_f2 + l26_f1 + l63_f2 + l71_f1 + l108_f2 + l115_f1, l26_f2 + l64_f2 + l109_f2 + l116_f1, l27_f1 + l65_f2 + l72_f1 + l110_f2, l27_f2 + l28_f1 + l66_f2 + l73_f1 + l111_f2 + l117_f1, l28_f2 + l29_f1 + l67_f2 + l74_f1 + l112_f2 + l118_f1, l29_f2 + l30_f1 + l68_f2 + l75_f1 + l113_f2 + l119_f1, l30_f2 + l31_f1 + l69_f2 + l76_f1 + l114_f2 + l120_f1, l31_f2 + l32_f1 + l70_f2 + l77_f1 + l115_f2 + l121_f1, l32_f2 + l71_f2 + l116_f2 + l122_f1, l33_f1 + l72_f2 + l78_f1 + l117_f2, l33_f2 + l34_f1 + l73_f2 + l79_f1 + l118_f2 + l123_f1, l34_f2 + l35_f1 + l74_f2 + l80_f1 + l119_f2 + l124_f1, l1_f1 + l35_f2 + l36_f1 + l75_f2 + l81_f1 + l120_f2 + l125_f1, l36_f2 + l37_f1 + l76_f2 + l82_f1 + l121_f2 + l126_f1, l37_f2 + l77_f2 + l122_f2 + l127_f1, l38_f1 + l78_f2 + l83_f1 + l123_f2, l38_f2 + l39_f1 + l79_f2 + l84_f1 + l124_f2 + l128_f1, l39_f2 + l40_f1 + l80_f2 + l85_f1 + l125_f2 + l129_f1, l40_f2 + l41_f1 + l81_f2 + l86_f1 + l126_f2 + l130_f1, l41_f2 + l82_f2 + l127_f2 + l131_f1, l42_f1 + l83_f2 + l87_f1 + l128_f2, l42_f2 + l43_f1 + l84_f2 + l88_f1 + l129_f2 + l132_f1, l2_f1 + l43_f2 + l44_f1 + l85_f2 + l89_f1 + l130_f2 + l133_f1, l44_f2 + l86_f2 + l131_f2 + l134_f1, l45_f1 + l87_f2 + l90_f1 + l132_f2, l45_f2 + l46_f1 + l88_f2 + l91_f1 + l133_f2 + l135_f1, l46_f2 + l89_f2 + l134_f2 + l136_f1, l47_f1 + l90_f2 + l92_f1 + l135_f2, l47_f2 + l91_f2 + l136_f2 + l137_f1, l92_f2 + l137_f2, l138_f1 + l228_f1, l138_f2 + l139_f1 + l229_f1, l139_f2 + l140_f1 + l230_f1, l140_f2 + l141_f1 + l231_f1, l141_f2 + l142_f1 + l232_f1, l142_f2 + l143_f1 + l233_f1, l143_f2 + l144_f1 + l234_f1, l144_f2 + l145_f1 + l235_f1, l145_f2 + l146_f1 + l236_f1, l146_f2 + l237_f1, l147_f1 + l228_f2 + l238_f1, l147_f2 + l148_f1 + l229_f2 + l239_f1, l148_f2 + l149_f1 + l230_f2 + l240_f1, l149_f2 + l150_f1 + l231_f2 + l241_f1, l150_f2 + l151_f1 + l232_f2 + l242_f1, l151_f2 + l152_f1 + l233_f2 + l243_f1, l152_f2 + l153_f1 + l234_f2 + l244_f1, l153_f2 + l154_f1 + l235_f2 + l245_f1, l154_f2 + l155_f1 + l236_f2 + l246_f1, l155_f2 + l237_f2 + l247_f1, l156_f1 + l238_f2 + l248_f1, l156_f2 + l157_f1 + l239_f2 + l249_f1, l157_f2 + l158_f1 + l240_f2 + l250_f1, l158_f2 + l159_f1 + l241_f2 + l251_f1, l159_f2 + l160_f1 + l242_f2 + l252_f1, l160_f2 + l161_f1 + l243_f2 + l253_f1, l161_f2 + l162_f1 + l244_f2 + l254_f1, l162_f2 + l163_f1 + l245_f2 + l255_f1, l163_f2 + l164_f1 + l246_f2 + l256_f1, l164_f2 + l247_f2 + l257_f1, l165_f1 + l248_f2 + l258_f1, l165_f2 + l166_f1 + l249_f2 + l259_f1, l166_f2 + l167_f1 + l250_f2 + l260_f1, l167_f2 + l168_f1 + l251_f2 + l261_f1, l168_f2 + l169_f1 + l252_f2 + l262_f1, l169_f2 + l170_f1 + l253_f2 + l263_f1, l170_f2 + l171_f1 + l254_f2 + l264_f1, l2_f2 + l171_f2 + l172_f1 + l255_f2 + l265_f1, l172_f2 + l173_f1 + l256_f2 + l266_f1, l173_f2 + l257_f2 + l267_f1, l174_f1 + l258_f2 + l268_f1, l174_f2 + l175_f1 + l259_f2 + l269_f1, l175_f2 + l176_f1 + l260_f2 + l270_f1, l176_f2 + l177_f1 + l261_f2 + l271_f1, l177_f2 + l178_f1 + l262_f2 + l272_f1, l178_f2 + l179_f1 + l263_f2 + l273_f1, l179_f2 + l180_f1 + l264_f2 + l274_f1, l180_f2 + l181_f1 + l265_f2 + l275_f1, l181_f2 + l182_f1 + l266_f2 + l276_f1, l182_f2 + l267_f2 + l277_f1, l183_f1 + l268_f2 + l278_f1, l183_f2 + l184_f1 + l269_f2 + l279_f1, l184_f2 + l185_f1 + l270_f2 + l280_f1, l185_f2 + l186_f1 + l271_f2 + l281_f1, l186_f2 + l187_f1 + l272_f2 + l282_f1, l187_f2 + l188_f1 + l273_f2 + l283_f1, l188_f2 + l189_f1 + l274_f2 + l284_f1, l189_f2 + l190_f1 + l275_f2 + l285_f1, l190_f2 + l191_f1 + l276_f2 + l286_f1, l191_f2 + l277_f2 + l287_f1, l192_f1 + l278_f2 + l288_f1, l192_f2 + l193_f1 + l279_f2 + l289_f1, l193_f2 + l194_f1 + l280_f2 + l290_f1, l194_f2 + l195_f1 + l281_f2 + l291_f1, l195_f2 + l196_f1 + l282_f2 + l292_f1, l196_f2 + l197_f1 + l283_f2 + l293_f1, l197_f2 + l198_f1 + l284_f2 + l294_f1, l198_f2 + l199_f1 + l285_f2 + l295_f1, l199_f2 + l200_f1 + l286_f2 + l296_f1, l200_f2 + l287_f2 + l297_f1, l201_f1 + l288_f2 + l298_f1, l201_f2 + l202_f1 + l289_f2 + l299_f1, l202_f2 + l203_f1 + l290_f2 + l300_f1, l203_f2 + l204_f1 + l291_f2 + l301_f1, l204_f2 + l205_f1 + l292_f2 + l302_f1, l205_f2 + l206_f1 + l293_f2 + l303_f1, l206_f2 + l207_f1 + l294_f2 + l304_f1, l207_f2 + l208_f1 + l295_f2 + l305_f1, l208_f2 + l209_f1 + l296_f2 + l306_f1, l209_f2 + l297_f2 + l307_f1, l210_f1 + l298_f2 + l308_f1, l210_f2 + l211_f1 + l299_f2 + l309_f1, l211_f2 + l212_f1 + l300_f2 + l310_f1, l212_f2 + l213_f1 + l301_f2 + l311_f1, l213_f2 + l214_f1 + l302_f2 + l312_f1, l214_f2 + l215_f1 + l303_f2 + l313_f1, l215_f2 + l216_f1 + l304_f2 + l314_f1, l216_f2 + l217_f1 + l305_f2 + l315_f1, l217_f2 + l218_f1 + l306_f2 + l316_f1, l218_f2 + l307_f2 + l317_f1, l219_f1 + l308_f2, l219_f2 + l220_f1 + l309_f2, l220_f2 + l221_f1 + l310_f2, l221_f2 + l222_f1 + l311_f2, l222_f2 + l223_f1 + l312_f2, l223_f2 + l224_f1 + l313_f2, l224_f2 + l225_f1 + l314_f2, l225_f2 + l226_f1 + l315_f2, l226_f2 + l227_f1 + l316_f2, l227_f2 + l317_f2, /* pass-through */ p_out1, p_out2;
|
|
517
|
+
nbMass = 157;
|
|
518
|
+
nbFrcIn = 1;
|
|
519
|
+
nbOut = 2;
|
|
520
|
+
};
|
|
521
|
+
process = in1 : model:*(OutGain), *(OutGain);
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
/*
|
|
525
|
+
========= MIMS SCRIPT USED FOR MODEL GENERATION =============
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
# A plucked triangular mesh model (fixed at corners)
|
|
529
|
+
# Script author: James Leonard
|
|
530
|
+
|
|
531
|
+
# A slow moving oscillator placed above the other
|
|
532
|
+
# serving as a hammer
|
|
533
|
+
@ham mass 0.3 1. 0.
|
|
534
|
+
@g ground 1.
|
|
535
|
+
@sp springDamper @g @ham 0.0001 0.05
|
|
536
|
+
|
|
537
|
+
# Add force input to the hammer
|
|
538
|
+
@in1 frcInput @ham
|
|
539
|
+
|
|
540
|
+
@c nlContact @t_m4_3 @ham 0. 0.01 0.5 0.001
|
|
541
|
+
|
|
542
|
+
@nls nlSpringDamper @t_m6_2 @me_m3_7 0.01 0.01 0.2 0.
|
|
543
|
+
|
|
544
|
+
@t_M param 1
|
|
545
|
+
@t_K param 0.1
|
|
546
|
+
@t_Z param 0.001
|
|
547
|
+
@t_Zo param 0.00005
|
|
548
|
+
|
|
549
|
+
@t_m0_0 ground 0
|
|
550
|
+
@t_m0_1 osc t_M 0 t_Zo 0. 0.
|
|
551
|
+
@t_m0_2 osc t_M 0 t_Zo 0. 0.
|
|
552
|
+
@t_m0_3 osc t_M 0 t_Zo 0. 0.
|
|
553
|
+
@t_m0_4 osc t_M 0 t_Zo 0. 0.
|
|
554
|
+
@t_m0_5 osc t_M 0 t_Zo 0. 0.
|
|
555
|
+
@t_m0_6 osc t_M 0 t_Zo 0. 0.
|
|
556
|
+
@t_m0_7 osc t_M 0 t_Zo 0. 0.
|
|
557
|
+
@t_m0_8 osc t_M 0 t_Zo 0. 0.
|
|
558
|
+
@t_m0_9 ground 0
|
|
559
|
+
@t_m1_0 osc t_M 0 t_Zo 0. 0.
|
|
560
|
+
@t_m1_1 osc t_M 0 t_Zo 0. 0.
|
|
561
|
+
@t_m1_2 osc t_M 0 t_Zo 0. 0.
|
|
562
|
+
@t_m1_3 osc t_M 0 t_Zo 0. 0.
|
|
563
|
+
@t_m1_4 osc t_M 0 t_Zo 0. 0.
|
|
564
|
+
@t_m1_5 osc t_M 0 t_Zo 0. 0.
|
|
565
|
+
@t_m1_6 osc t_M 0 t_Zo 0. 0.
|
|
566
|
+
@t_m1_7 osc t_M 0 t_Zo 0. 0.
|
|
567
|
+
@t_m1_8 osc t_M 0 t_Zo 0. 0.
|
|
568
|
+
@t_m2_0 osc t_M 0 t_Zo 0. 0.
|
|
569
|
+
@t_m2_1 osc t_M 0 t_Zo 0. 0.
|
|
570
|
+
@t_m2_2 osc t_M 0 t_Zo 0. 0.
|
|
571
|
+
@t_m2_3 osc t_M 0 t_Zo 0. 0.
|
|
572
|
+
@t_m2_4 osc t_M 0 t_Zo 0. 0.
|
|
573
|
+
@t_m2_5 osc t_M 0 t_Zo 0. 0.
|
|
574
|
+
@t_m2_6 osc t_M 0 t_Zo 0. 0.
|
|
575
|
+
@t_m2_7 osc t_M 0 t_Zo 0. 0.
|
|
576
|
+
@t_m3_0 osc t_M 0 t_Zo 0. 0.
|
|
577
|
+
@t_m3_1 osc t_M 0 t_Zo 0. 0.
|
|
578
|
+
@t_m3_2 osc t_M 0 t_Zo 0. 0.
|
|
579
|
+
@t_m3_3 osc t_M 0 t_Zo 0. 0.
|
|
580
|
+
@t_m3_4 osc t_M 0 t_Zo 0. 0.
|
|
581
|
+
@t_m3_5 osc t_M 0 t_Zo 0. 0.
|
|
582
|
+
@t_m3_6 osc t_M 0 t_Zo 0. 0.
|
|
583
|
+
@t_m4_0 osc t_M 0 t_Zo 0. 0.
|
|
584
|
+
@t_m4_1 osc t_M 0 t_Zo 0. 0.
|
|
585
|
+
@t_m4_2 osc t_M 0 t_Zo 0. 0.
|
|
586
|
+
@t_m4_3 osc t_M 0 t_Zo 0. 0.
|
|
587
|
+
@t_m4_4 osc t_M 0 t_Zo 0. 0.
|
|
588
|
+
@t_m4_5 osc t_M 0 t_Zo 0. 0.
|
|
589
|
+
@t_m5_0 osc t_M 0 t_Zo 0. 0.
|
|
590
|
+
@t_m5_1 osc t_M 0 t_Zo 0. 0.
|
|
591
|
+
@t_m5_2 osc t_M 0 t_Zo 0. 0.
|
|
592
|
+
@t_m5_3 osc t_M 0 t_Zo 0. 0.
|
|
593
|
+
@t_m5_4 osc t_M 0 t_Zo 0. 0.
|
|
594
|
+
@t_m6_0 osc t_M 0 t_Zo 0. 0.
|
|
595
|
+
@t_m6_1 osc t_M 0 t_Zo 0. 0.
|
|
596
|
+
@t_m6_2 osc t_M 0 t_Zo 0. 0.
|
|
597
|
+
@t_m6_3 osc t_M 0 t_Zo 0. 0.
|
|
598
|
+
@t_m7_0 osc t_M 0 t_Zo 0. 0.
|
|
599
|
+
@t_m7_1 osc t_M 0 t_Zo 0. 0.
|
|
600
|
+
@t_m7_2 osc t_M 0 t_Zo 0. 0.
|
|
601
|
+
@t_m8_0 osc t_M 0 t_Zo 0. 0.
|
|
602
|
+
@t_m8_1 osc t_M 0 t_Zo 0. 0.
|
|
603
|
+
@t_m9_0 ground 0
|
|
604
|
+
|
|
605
|
+
@t_r0 springDamper @t_m0_0 @t_m0_1 t_K t_Z
|
|
606
|
+
@t_r1 springDamper @t_m0_1 @t_m0_2 t_K t_Z
|
|
607
|
+
@t_r2 springDamper @t_m0_2 @t_m0_3 t_K t_Z
|
|
608
|
+
@t_r3 springDamper @t_m0_3 @t_m0_4 t_K t_Z
|
|
609
|
+
@t_r4 springDamper @t_m0_4 @t_m0_5 t_K t_Z
|
|
610
|
+
@t_r5 springDamper @t_m0_5 @t_m0_6 t_K t_Z
|
|
611
|
+
@t_r6 springDamper @t_m0_6 @t_m0_7 t_K t_Z
|
|
612
|
+
@t_r7 springDamper @t_m0_7 @t_m0_8 t_K t_Z
|
|
613
|
+
@t_r8 springDamper @t_m0_8 @t_m0_9 t_K t_Z
|
|
614
|
+
@t_r9 springDamper @t_m1_0 @t_m1_1 t_K t_Z
|
|
615
|
+
@t_r10 springDamper @t_m1_1 @t_m1_2 t_K t_Z
|
|
616
|
+
@t_r11 springDamper @t_m1_2 @t_m1_3 t_K t_Z
|
|
617
|
+
@t_r12 springDamper @t_m1_3 @t_m1_4 t_K t_Z
|
|
618
|
+
@t_r13 springDamper @t_m1_4 @t_m1_5 t_K t_Z
|
|
619
|
+
@t_r14 springDamper @t_m1_5 @t_m1_6 t_K t_Z
|
|
620
|
+
@t_r15 springDamper @t_m1_6 @t_m1_7 t_K t_Z
|
|
621
|
+
@t_r16 springDamper @t_m1_7 @t_m1_8 t_K t_Z
|
|
622
|
+
@t_r17 springDamper @t_m2_0 @t_m2_1 t_K t_Z
|
|
623
|
+
@t_r18 springDamper @t_m2_1 @t_m2_2 t_K t_Z
|
|
624
|
+
@t_r19 springDamper @t_m2_2 @t_m2_3 t_K t_Z
|
|
625
|
+
@t_r20 springDamper @t_m2_3 @t_m2_4 t_K t_Z
|
|
626
|
+
@t_r21 springDamper @t_m2_4 @t_m2_5 t_K t_Z
|
|
627
|
+
@t_r22 springDamper @t_m2_5 @t_m2_6 t_K t_Z
|
|
628
|
+
@t_r23 springDamper @t_m2_6 @t_m2_7 t_K t_Z
|
|
629
|
+
@t_r24 springDamper @t_m3_0 @t_m3_1 t_K t_Z
|
|
630
|
+
@t_r25 springDamper @t_m3_1 @t_m3_2 t_K t_Z
|
|
631
|
+
@t_r26 springDamper @t_m3_2 @t_m3_3 t_K t_Z
|
|
632
|
+
@t_r27 springDamper @t_m3_3 @t_m3_4 t_K t_Z
|
|
633
|
+
@t_r28 springDamper @t_m3_4 @t_m3_5 t_K t_Z
|
|
634
|
+
@t_r29 springDamper @t_m3_5 @t_m3_6 t_K t_Z
|
|
635
|
+
@t_r30 springDamper @t_m4_0 @t_m4_1 t_K t_Z
|
|
636
|
+
@t_r31 springDamper @t_m4_1 @t_m4_2 t_K t_Z
|
|
637
|
+
@t_r32 springDamper @t_m4_2 @t_m4_3 t_K t_Z
|
|
638
|
+
@t_r33 springDamper @t_m4_3 @t_m4_4 t_K t_Z
|
|
639
|
+
@t_r34 springDamper @t_m4_4 @t_m4_5 t_K t_Z
|
|
640
|
+
@t_r35 springDamper @t_m5_0 @t_m5_1 t_K t_Z
|
|
641
|
+
@t_r36 springDamper @t_m5_1 @t_m5_2 t_K t_Z
|
|
642
|
+
@t_r37 springDamper @t_m5_2 @t_m5_3 t_K t_Z
|
|
643
|
+
@t_r38 springDamper @t_m5_3 @t_m5_4 t_K t_Z
|
|
644
|
+
@t_r39 springDamper @t_m6_0 @t_m6_1 t_K t_Z
|
|
645
|
+
@t_r40 springDamper @t_m6_1 @t_m6_2 t_K t_Z
|
|
646
|
+
@t_r41 springDamper @t_m6_2 @t_m6_3 t_K t_Z
|
|
647
|
+
@t_r42 springDamper @t_m7_0 @t_m7_1 t_K t_Z
|
|
648
|
+
@t_r43 springDamper @t_m7_1 @t_m7_2 t_K t_Z
|
|
649
|
+
@t_r44 springDamper @t_m8_0 @t_m8_1 t_K t_Z
|
|
650
|
+
|
|
651
|
+
@t_r45 springDamper @t_m0_0 @t_m1_0 t_K t_Z
|
|
652
|
+
@t_r46 springDamper @t_m0_1 @t_m1_1 t_K t_Z
|
|
653
|
+
@t_r47 springDamper @t_m0_2 @t_m1_2 t_K t_Z
|
|
654
|
+
@t_r48 springDamper @t_m0_3 @t_m1_3 t_K t_Z
|
|
655
|
+
@t_r49 springDamper @t_m0_4 @t_m1_4 t_K t_Z
|
|
656
|
+
@t_r50 springDamper @t_m0_5 @t_m1_5 t_K t_Z
|
|
657
|
+
@t_r51 springDamper @t_m0_6 @t_m1_6 t_K t_Z
|
|
658
|
+
@t_r52 springDamper @t_m0_7 @t_m1_7 t_K t_Z
|
|
659
|
+
@t_r53 springDamper @t_m0_8 @t_m1_8 t_K t_Z
|
|
660
|
+
@t_r54 springDamper @t_m1_0 @t_m2_0 t_K t_Z
|
|
661
|
+
@t_r55 springDamper @t_m1_1 @t_m2_1 t_K t_Z
|
|
662
|
+
@t_r56 springDamper @t_m1_2 @t_m2_2 t_K t_Z
|
|
663
|
+
@t_r57 springDamper @t_m1_3 @t_m2_3 t_K t_Z
|
|
664
|
+
@t_r58 springDamper @t_m1_4 @t_m2_4 t_K t_Z
|
|
665
|
+
@t_r59 springDamper @t_m1_5 @t_m2_5 t_K t_Z
|
|
666
|
+
@t_r60 springDamper @t_m1_6 @t_m2_6 t_K t_Z
|
|
667
|
+
@t_r61 springDamper @t_m1_7 @t_m2_7 t_K t_Z
|
|
668
|
+
@t_r62 springDamper @t_m2_0 @t_m3_0 t_K t_Z
|
|
669
|
+
@t_r63 springDamper @t_m2_1 @t_m3_1 t_K t_Z
|
|
670
|
+
@t_r64 springDamper @t_m2_2 @t_m3_2 t_K t_Z
|
|
671
|
+
@t_r65 springDamper @t_m2_3 @t_m3_3 t_K t_Z
|
|
672
|
+
@t_r66 springDamper @t_m2_4 @t_m3_4 t_K t_Z
|
|
673
|
+
@t_r67 springDamper @t_m2_5 @t_m3_5 t_K t_Z
|
|
674
|
+
@t_r68 springDamper @t_m2_6 @t_m3_6 t_K t_Z
|
|
675
|
+
@t_r69 springDamper @t_m3_0 @t_m4_0 t_K t_Z
|
|
676
|
+
@t_r70 springDamper @t_m3_1 @t_m4_1 t_K t_Z
|
|
677
|
+
@t_r71 springDamper @t_m3_2 @t_m4_2 t_K t_Z
|
|
678
|
+
@t_r72 springDamper @t_m3_3 @t_m4_3 t_K t_Z
|
|
679
|
+
@t_r73 springDamper @t_m3_4 @t_m4_4 t_K t_Z
|
|
680
|
+
@t_r74 springDamper @t_m3_5 @t_m4_5 t_K t_Z
|
|
681
|
+
@t_r75 springDamper @t_m4_0 @t_m5_0 t_K t_Z
|
|
682
|
+
@t_r76 springDamper @t_m4_1 @t_m5_1 t_K t_Z
|
|
683
|
+
@t_r77 springDamper @t_m4_2 @t_m5_2 t_K t_Z
|
|
684
|
+
@t_r78 springDamper @t_m4_3 @t_m5_3 t_K t_Z
|
|
685
|
+
@t_r79 springDamper @t_m4_4 @t_m5_4 t_K t_Z
|
|
686
|
+
@t_r80 springDamper @t_m5_0 @t_m6_0 t_K t_Z
|
|
687
|
+
@t_r81 springDamper @t_m5_1 @t_m6_1 t_K t_Z
|
|
688
|
+
@t_r82 springDamper @t_m5_2 @t_m6_2 t_K t_Z
|
|
689
|
+
@t_r83 springDamper @t_m5_3 @t_m6_3 t_K t_Z
|
|
690
|
+
@t_r84 springDamper @t_m6_0 @t_m7_0 t_K t_Z
|
|
691
|
+
@t_r85 springDamper @t_m6_1 @t_m7_1 t_K t_Z
|
|
692
|
+
@t_r86 springDamper @t_m6_2 @t_m7_2 t_K t_Z
|
|
693
|
+
@t_r87 springDamper @t_m7_0 @t_m8_0 t_K t_Z
|
|
694
|
+
@t_r88 springDamper @t_m7_1 @t_m8_1 t_K t_Z
|
|
695
|
+
@t_r89 springDamper @t_m8_0 @t_m9_0 t_K t_Z
|
|
696
|
+
|
|
697
|
+
@t_r90 springDamper @t_m0_1 @t_m1_0 t_K t_Z
|
|
698
|
+
@t_r91 springDamper @t_m0_2 @t_m1_1 t_K t_Z
|
|
699
|
+
@t_r92 springDamper @t_m0_3 @t_m1_2 t_K t_Z
|
|
700
|
+
@t_r93 springDamper @t_m0_4 @t_m1_3 t_K t_Z
|
|
701
|
+
@t_r94 springDamper @t_m0_5 @t_m1_4 t_K t_Z
|
|
702
|
+
@t_r95 springDamper @t_m0_6 @t_m1_5 t_K t_Z
|
|
703
|
+
@t_r96 springDamper @t_m0_7 @t_m1_6 t_K t_Z
|
|
704
|
+
@t_r97 springDamper @t_m0_8 @t_m1_7 t_K t_Z
|
|
705
|
+
@t_r98 springDamper @t_m0_9 @t_m1_8 t_K t_Z
|
|
706
|
+
@t_r99 springDamper @t_m1_1 @t_m2_0 t_K t_Z
|
|
707
|
+
@t_r100 springDamper @t_m1_2 @t_m2_1 t_K t_Z
|
|
708
|
+
@t_r101 springDamper @t_m1_3 @t_m2_2 t_K t_Z
|
|
709
|
+
@t_r102 springDamper @t_m1_4 @t_m2_3 t_K t_Z
|
|
710
|
+
@t_r103 springDamper @t_m1_5 @t_m2_4 t_K t_Z
|
|
711
|
+
@t_r104 springDamper @t_m1_6 @t_m2_5 t_K t_Z
|
|
712
|
+
@t_r105 springDamper @t_m1_7 @t_m2_6 t_K t_Z
|
|
713
|
+
@t_r106 springDamper @t_m1_8 @t_m2_7 t_K t_Z
|
|
714
|
+
@t_r107 springDamper @t_m2_1 @t_m3_0 t_K t_Z
|
|
715
|
+
@t_r108 springDamper @t_m2_2 @t_m3_1 t_K t_Z
|
|
716
|
+
@t_r109 springDamper @t_m2_3 @t_m3_2 t_K t_Z
|
|
717
|
+
@t_r110 springDamper @t_m2_4 @t_m3_3 t_K t_Z
|
|
718
|
+
@t_r111 springDamper @t_m2_5 @t_m3_4 t_K t_Z
|
|
719
|
+
@t_r112 springDamper @t_m2_6 @t_m3_5 t_K t_Z
|
|
720
|
+
@t_r113 springDamper @t_m2_7 @t_m3_6 t_K t_Z
|
|
721
|
+
@t_r114 springDamper @t_m3_1 @t_m4_0 t_K t_Z
|
|
722
|
+
@t_r115 springDamper @t_m3_2 @t_m4_1 t_K t_Z
|
|
723
|
+
@t_r116 springDamper @t_m3_3 @t_m4_2 t_K t_Z
|
|
724
|
+
@t_r117 springDamper @t_m3_4 @t_m4_3 t_K t_Z
|
|
725
|
+
@t_r118 springDamper @t_m3_5 @t_m4_4 t_K t_Z
|
|
726
|
+
@t_r119 springDamper @t_m3_6 @t_m4_5 t_K t_Z
|
|
727
|
+
@t_r120 springDamper @t_m4_1 @t_m5_0 t_K t_Z
|
|
728
|
+
@t_r121 springDamper @t_m4_2 @t_m5_1 t_K t_Z
|
|
729
|
+
@t_r122 springDamper @t_m4_3 @t_m5_2 t_K t_Z
|
|
730
|
+
@t_r123 springDamper @t_m4_4 @t_m5_3 t_K t_Z
|
|
731
|
+
@t_r124 springDamper @t_m4_5 @t_m5_4 t_K t_Z
|
|
732
|
+
@t_r125 springDamper @t_m5_1 @t_m6_0 t_K t_Z
|
|
733
|
+
@t_r126 springDamper @t_m5_2 @t_m6_1 t_K t_Z
|
|
734
|
+
@t_r127 springDamper @t_m5_3 @t_m6_2 t_K t_Z
|
|
735
|
+
@t_r128 springDamper @t_m5_4 @t_m6_3 t_K t_Z
|
|
736
|
+
@t_r129 springDamper @t_m6_1 @t_m7_0 t_K t_Z
|
|
737
|
+
@t_r130 springDamper @t_m6_2 @t_m7_1 t_K t_Z
|
|
738
|
+
@t_r131 springDamper @t_m6_3 @t_m7_2 t_K t_Z
|
|
739
|
+
@t_r132 springDamper @t_m7_1 @t_m8_0 t_K t_Z
|
|
740
|
+
@t_r133 springDamper @t_m7_2 @t_m8_1 t_K t_Z
|
|
741
|
+
@t_r134 springDamper @t_m8_1 @t_m9_0 t_K t_Z
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
@me_M param 1
|
|
746
|
+
@me_K param 0.1
|
|
747
|
+
@me_Z param 0.001
|
|
748
|
+
@me_Zo param 0.00005
|
|
749
|
+
|
|
750
|
+
@me_m0_0 ground 0
|
|
751
|
+
@me_m0_1 osc me_M 0 me_Zo 0. 0.
|
|
752
|
+
@me_m0_2 osc me_M 0 me_Zo 0. 0.
|
|
753
|
+
@me_m0_3 osc me_M 0 me_Zo 0. 0.
|
|
754
|
+
@me_m0_4 osc me_M 0 me_Zo 0. 0.
|
|
755
|
+
@me_m0_5 osc me_M 0 me_Zo 0. 0.
|
|
756
|
+
@me_m0_6 osc me_M 0 me_Zo 0. 0.
|
|
757
|
+
@me_m0_7 osc me_M 0 me_Zo 0. 0.
|
|
758
|
+
@me_m0_8 osc me_M 0 me_Zo 0. 0.
|
|
759
|
+
@me_m0_9 ground 0
|
|
760
|
+
@me_m1_0 osc me_M 0 me_Zo 0. 0.
|
|
761
|
+
@me_m1_1 osc me_M 0 me_Zo 0. 0.
|
|
762
|
+
@me_m1_2 osc me_M 0 me_Zo 0. 0.
|
|
763
|
+
@me_m1_3 osc me_M 0 me_Zo 0. 0.
|
|
764
|
+
@me_m1_4 osc me_M 0 me_Zo 0. 0.
|
|
765
|
+
@me_m1_5 osc me_M 0 me_Zo 0. 0.
|
|
766
|
+
@me_m1_6 osc me_M 0 me_Zo 0. 0.
|
|
767
|
+
@me_m1_7 osc me_M 0 me_Zo 0. 0.
|
|
768
|
+
@me_m1_8 osc me_M 0 me_Zo 0. 0.
|
|
769
|
+
@me_m1_9 osc me_M 0 me_Zo 0. 0.
|
|
770
|
+
@me_m2_0 osc me_M 0 me_Zo 0. 0.
|
|
771
|
+
@me_m2_1 osc me_M 0 me_Zo 0. 0.
|
|
772
|
+
@me_m2_2 osc me_M 0 me_Zo 0. 0.
|
|
773
|
+
@me_m2_3 osc me_M 0 me_Zo 0. 0.
|
|
774
|
+
@me_m2_4 osc me_M 0 me_Zo 0. 0.
|
|
775
|
+
@me_m2_5 osc me_M 0 me_Zo 0. 0.
|
|
776
|
+
@me_m2_6 osc me_M 0 me_Zo 0. 0.
|
|
777
|
+
@me_m2_7 osc me_M 0 me_Zo 0. 0.
|
|
778
|
+
@me_m2_8 osc me_M 0 me_Zo 0. 0.
|
|
779
|
+
@me_m2_9 osc me_M 0 me_Zo 0. 0.
|
|
780
|
+
@me_m3_0 osc me_M 0 me_Zo 0. 0.
|
|
781
|
+
@me_m3_1 osc me_M 0 me_Zo 0. 0.
|
|
782
|
+
@me_m3_2 osc me_M 0 me_Zo 0. 0.
|
|
783
|
+
@me_m3_3 osc me_M 0 me_Zo 0. 0.
|
|
784
|
+
@me_m3_4 osc me_M 0 me_Zo 0. 0.
|
|
785
|
+
@me_m3_5 osc me_M 0 me_Zo 0. 0.
|
|
786
|
+
@me_m3_6 osc me_M 0 me_Zo 0. 0.
|
|
787
|
+
@me_m3_7 osc me_M 0 me_Zo 0. 0.
|
|
788
|
+
@me_m3_8 osc me_M 0 me_Zo 0. 0.
|
|
789
|
+
@me_m3_9 osc me_M 0 me_Zo 0. 0.
|
|
790
|
+
@me_m4_0 osc me_M 0 me_Zo 0. 0.
|
|
791
|
+
@me_m4_1 osc me_M 0 me_Zo 0. 0.
|
|
792
|
+
@me_m4_2 osc me_M 0 me_Zo 0. 0.
|
|
793
|
+
@me_m4_3 osc me_M 0 me_Zo 0. 0.
|
|
794
|
+
@me_m4_4 osc me_M 0 me_Zo 0. 0.
|
|
795
|
+
@me_m4_5 osc me_M 0 me_Zo 0. 0.
|
|
796
|
+
@me_m4_6 osc me_M 0 me_Zo 0. 0.
|
|
797
|
+
@me_m4_7 osc me_M 0 me_Zo 0. 0.
|
|
798
|
+
@me_m4_8 osc me_M 0 me_Zo 0. 0.
|
|
799
|
+
@me_m4_9 osc me_M 0 me_Zo 0. 0.
|
|
800
|
+
@me_m5_0 osc me_M 0 me_Zo 0. 0.
|
|
801
|
+
@me_m5_1 osc me_M 0 me_Zo 0. 0.
|
|
802
|
+
@me_m5_2 osc me_M 0 me_Zo 0. 0.
|
|
803
|
+
@me_m5_3 osc me_M 0 me_Zo 0. 0.
|
|
804
|
+
@me_m5_4 osc me_M 0 me_Zo 0. 0.
|
|
805
|
+
@me_m5_5 osc me_M 0 me_Zo 0. 0.
|
|
806
|
+
@me_m5_6 osc me_M 0 me_Zo 0. 0.
|
|
807
|
+
@me_m5_7 osc me_M 0 me_Zo 0. 0.
|
|
808
|
+
@me_m5_8 osc me_M 0 me_Zo 0. 0.
|
|
809
|
+
@me_m5_9 osc me_M 0 me_Zo 0. 0.
|
|
810
|
+
@me_m6_0 osc me_M 0 me_Zo 0. 0.
|
|
811
|
+
@me_m6_1 osc me_M 0 me_Zo 0. 0.
|
|
812
|
+
@me_m6_2 osc me_M 0 me_Zo 0. 0.
|
|
813
|
+
@me_m6_3 osc me_M 0 me_Zo 0. 0.
|
|
814
|
+
@me_m6_4 osc me_M 0 me_Zo 0. 0.
|
|
815
|
+
@me_m6_5 osc me_M 0 me_Zo 0. 0.
|
|
816
|
+
@me_m6_6 osc me_M 0 me_Zo 0. 0.
|
|
817
|
+
@me_m6_7 osc me_M 0 me_Zo 0. 0.
|
|
818
|
+
@me_m6_8 osc me_M 0 me_Zo 0. 0.
|
|
819
|
+
@me_m6_9 osc me_M 0 me_Zo 0. 0.
|
|
820
|
+
@me_m7_0 osc me_M 0 me_Zo 0. 0.
|
|
821
|
+
@me_m7_1 osc me_M 0 me_Zo 0. 0.
|
|
822
|
+
@me_m7_2 osc me_M 0 me_Zo 0. 0.
|
|
823
|
+
@me_m7_3 osc me_M 0 me_Zo 0. 0.
|
|
824
|
+
@me_m7_4 osc me_M 0 me_Zo 0. 0.
|
|
825
|
+
@me_m7_5 osc me_M 0 me_Zo 0. 0.
|
|
826
|
+
@me_m7_6 osc me_M 0 me_Zo 0. 0.
|
|
827
|
+
@me_m7_7 osc me_M 0 me_Zo 0. 0.
|
|
828
|
+
@me_m7_8 osc me_M 0 me_Zo 0. 0.
|
|
829
|
+
@me_m7_9 osc me_M 0 me_Zo 0. 0.
|
|
830
|
+
@me_m8_0 osc me_M 0 me_Zo 0. 0.
|
|
831
|
+
@me_m8_1 osc me_M 0 me_Zo 0. 0.
|
|
832
|
+
@me_m8_2 osc me_M 0 me_Zo 0. 0.
|
|
833
|
+
@me_m8_3 osc me_M 0 me_Zo 0. 0.
|
|
834
|
+
@me_m8_4 osc me_M 0 me_Zo 0. 0.
|
|
835
|
+
@me_m8_5 osc me_M 0 me_Zo 0. 0.
|
|
836
|
+
@me_m8_6 osc me_M 0 me_Zo 0. 0.
|
|
837
|
+
@me_m8_7 osc me_M 0 me_Zo 0. 0.
|
|
838
|
+
@me_m8_8 osc me_M 0 me_Zo 0. 0.
|
|
839
|
+
@me_m8_9 osc me_M 0 me_Zo 0. 0.
|
|
840
|
+
@me_m9_0 ground 0
|
|
841
|
+
@me_m9_1 osc me_M 0 me_Zo 0. 0.
|
|
842
|
+
@me_m9_2 osc me_M 0 me_Zo 0. 0.
|
|
843
|
+
@me_m9_3 osc me_M 0 me_Zo 0. 0.
|
|
844
|
+
@me_m9_4 osc me_M 0 me_Zo 0. 0.
|
|
845
|
+
@me_m9_5 osc me_M 0 me_Zo 0. 0.
|
|
846
|
+
@me_m9_6 osc me_M 0 me_Zo 0. 0.
|
|
847
|
+
@me_m9_7 osc me_M 0 me_Zo 0. 0.
|
|
848
|
+
@me_m9_8 osc me_M 0 me_Zo 0. 0.
|
|
849
|
+
@me_m9_9 ground 0
|
|
850
|
+
|
|
851
|
+
@me_r0 springDamper @me_m0_0 @me_m0_1 me_K me_Z
|
|
852
|
+
@me_r1 springDamper @me_m0_1 @me_m0_2 me_K me_Z
|
|
853
|
+
@me_r2 springDamper @me_m0_2 @me_m0_3 me_K me_Z
|
|
854
|
+
@me_r3 springDamper @me_m0_3 @me_m0_4 me_K me_Z
|
|
855
|
+
@me_r4 springDamper @me_m0_4 @me_m0_5 me_K me_Z
|
|
856
|
+
@me_r5 springDamper @me_m0_5 @me_m0_6 me_K me_Z
|
|
857
|
+
@me_r6 springDamper @me_m0_6 @me_m0_7 me_K me_Z
|
|
858
|
+
@me_r7 springDamper @me_m0_7 @me_m0_8 me_K me_Z
|
|
859
|
+
@me_r8 springDamper @me_m0_8 @me_m0_9 me_K me_Z
|
|
860
|
+
@me_r9 springDamper @me_m1_0 @me_m1_1 me_K me_Z
|
|
861
|
+
@me_r10 springDamper @me_m1_1 @me_m1_2 me_K me_Z
|
|
862
|
+
@me_r11 springDamper @me_m1_2 @me_m1_3 me_K me_Z
|
|
863
|
+
@me_r12 springDamper @me_m1_3 @me_m1_4 me_K me_Z
|
|
864
|
+
@me_r13 springDamper @me_m1_4 @me_m1_5 me_K me_Z
|
|
865
|
+
@me_r14 springDamper @me_m1_5 @me_m1_6 me_K me_Z
|
|
866
|
+
@me_r15 springDamper @me_m1_6 @me_m1_7 me_K me_Z
|
|
867
|
+
@me_r16 springDamper @me_m1_7 @me_m1_8 me_K me_Z
|
|
868
|
+
@me_r17 springDamper @me_m1_8 @me_m1_9 me_K me_Z
|
|
869
|
+
@me_r18 springDamper @me_m2_0 @me_m2_1 me_K me_Z
|
|
870
|
+
@me_r19 springDamper @me_m2_1 @me_m2_2 me_K me_Z
|
|
871
|
+
@me_r20 springDamper @me_m2_2 @me_m2_3 me_K me_Z
|
|
872
|
+
@me_r21 springDamper @me_m2_3 @me_m2_4 me_K me_Z
|
|
873
|
+
@me_r22 springDamper @me_m2_4 @me_m2_5 me_K me_Z
|
|
874
|
+
@me_r23 springDamper @me_m2_5 @me_m2_6 me_K me_Z
|
|
875
|
+
@me_r24 springDamper @me_m2_6 @me_m2_7 me_K me_Z
|
|
876
|
+
@me_r25 springDamper @me_m2_7 @me_m2_8 me_K me_Z
|
|
877
|
+
@me_r26 springDamper @me_m2_8 @me_m2_9 me_K me_Z
|
|
878
|
+
@me_r27 springDamper @me_m3_0 @me_m3_1 me_K me_Z
|
|
879
|
+
@me_r28 springDamper @me_m3_1 @me_m3_2 me_K me_Z
|
|
880
|
+
@me_r29 springDamper @me_m3_2 @me_m3_3 me_K me_Z
|
|
881
|
+
@me_r30 springDamper @me_m3_3 @me_m3_4 me_K me_Z
|
|
882
|
+
@me_r31 springDamper @me_m3_4 @me_m3_5 me_K me_Z
|
|
883
|
+
@me_r32 springDamper @me_m3_5 @me_m3_6 me_K me_Z
|
|
884
|
+
@me_r33 springDamper @me_m3_6 @me_m3_7 me_K me_Z
|
|
885
|
+
@me_r34 springDamper @me_m3_7 @me_m3_8 me_K me_Z
|
|
886
|
+
@me_r35 springDamper @me_m3_8 @me_m3_9 me_K me_Z
|
|
887
|
+
@me_r36 springDamper @me_m4_0 @me_m4_1 me_K me_Z
|
|
888
|
+
@me_r37 springDamper @me_m4_1 @me_m4_2 me_K me_Z
|
|
889
|
+
@me_r38 springDamper @me_m4_2 @me_m4_3 me_K me_Z
|
|
890
|
+
@me_r39 springDamper @me_m4_3 @me_m4_4 me_K me_Z
|
|
891
|
+
@me_r40 springDamper @me_m4_4 @me_m4_5 me_K me_Z
|
|
892
|
+
@me_r41 springDamper @me_m4_5 @me_m4_6 me_K me_Z
|
|
893
|
+
@me_r42 springDamper @me_m4_6 @me_m4_7 me_K me_Z
|
|
894
|
+
@me_r43 springDamper @me_m4_7 @me_m4_8 me_K me_Z
|
|
895
|
+
@me_r44 springDamper @me_m4_8 @me_m4_9 me_K me_Z
|
|
896
|
+
@me_r45 springDamper @me_m5_0 @me_m5_1 me_K me_Z
|
|
897
|
+
@me_r46 springDamper @me_m5_1 @me_m5_2 me_K me_Z
|
|
898
|
+
@me_r47 springDamper @me_m5_2 @me_m5_3 me_K me_Z
|
|
899
|
+
@me_r48 springDamper @me_m5_3 @me_m5_4 me_K me_Z
|
|
900
|
+
@me_r49 springDamper @me_m5_4 @me_m5_5 me_K me_Z
|
|
901
|
+
@me_r50 springDamper @me_m5_5 @me_m5_6 me_K me_Z
|
|
902
|
+
@me_r51 springDamper @me_m5_6 @me_m5_7 me_K me_Z
|
|
903
|
+
@me_r52 springDamper @me_m5_7 @me_m5_8 me_K me_Z
|
|
904
|
+
@me_r53 springDamper @me_m5_8 @me_m5_9 me_K me_Z
|
|
905
|
+
@me_r54 springDamper @me_m6_0 @me_m6_1 me_K me_Z
|
|
906
|
+
@me_r55 springDamper @me_m6_1 @me_m6_2 me_K me_Z
|
|
907
|
+
@me_r56 springDamper @me_m6_2 @me_m6_3 me_K me_Z
|
|
908
|
+
@me_r57 springDamper @me_m6_3 @me_m6_4 me_K me_Z
|
|
909
|
+
@me_r58 springDamper @me_m6_4 @me_m6_5 me_K me_Z
|
|
910
|
+
@me_r59 springDamper @me_m6_5 @me_m6_6 me_K me_Z
|
|
911
|
+
@me_r60 springDamper @me_m6_6 @me_m6_7 me_K me_Z
|
|
912
|
+
@me_r61 springDamper @me_m6_7 @me_m6_8 me_K me_Z
|
|
913
|
+
@me_r62 springDamper @me_m6_8 @me_m6_9 me_K me_Z
|
|
914
|
+
@me_r63 springDamper @me_m7_0 @me_m7_1 me_K me_Z
|
|
915
|
+
@me_r64 springDamper @me_m7_1 @me_m7_2 me_K me_Z
|
|
916
|
+
@me_r65 springDamper @me_m7_2 @me_m7_3 me_K me_Z
|
|
917
|
+
@me_r66 springDamper @me_m7_3 @me_m7_4 me_K me_Z
|
|
918
|
+
@me_r67 springDamper @me_m7_4 @me_m7_5 me_K me_Z
|
|
919
|
+
@me_r68 springDamper @me_m7_5 @me_m7_6 me_K me_Z
|
|
920
|
+
@me_r69 springDamper @me_m7_6 @me_m7_7 me_K me_Z
|
|
921
|
+
@me_r70 springDamper @me_m7_7 @me_m7_8 me_K me_Z
|
|
922
|
+
@me_r71 springDamper @me_m7_8 @me_m7_9 me_K me_Z
|
|
923
|
+
@me_r72 springDamper @me_m8_0 @me_m8_1 me_K me_Z
|
|
924
|
+
@me_r73 springDamper @me_m8_1 @me_m8_2 me_K me_Z
|
|
925
|
+
@me_r74 springDamper @me_m8_2 @me_m8_3 me_K me_Z
|
|
926
|
+
@me_r75 springDamper @me_m8_3 @me_m8_4 me_K me_Z
|
|
927
|
+
@me_r76 springDamper @me_m8_4 @me_m8_5 me_K me_Z
|
|
928
|
+
@me_r77 springDamper @me_m8_5 @me_m8_6 me_K me_Z
|
|
929
|
+
@me_r78 springDamper @me_m8_6 @me_m8_7 me_K me_Z
|
|
930
|
+
@me_r79 springDamper @me_m8_7 @me_m8_8 me_K me_Z
|
|
931
|
+
@me_r80 springDamper @me_m8_8 @me_m8_9 me_K me_Z
|
|
932
|
+
@me_r81 springDamper @me_m9_0 @me_m9_1 me_K me_Z
|
|
933
|
+
@me_r82 springDamper @me_m9_1 @me_m9_2 me_K me_Z
|
|
934
|
+
@me_r83 springDamper @me_m9_2 @me_m9_3 me_K me_Z
|
|
935
|
+
@me_r84 springDamper @me_m9_3 @me_m9_4 me_K me_Z
|
|
936
|
+
@me_r85 springDamper @me_m9_4 @me_m9_5 me_K me_Z
|
|
937
|
+
@me_r86 springDamper @me_m9_5 @me_m9_6 me_K me_Z
|
|
938
|
+
@me_r87 springDamper @me_m9_6 @me_m9_7 me_K me_Z
|
|
939
|
+
@me_r88 springDamper @me_m9_7 @me_m9_8 me_K me_Z
|
|
940
|
+
@me_r89 springDamper @me_m9_8 @me_m9_9 me_K me_Z
|
|
941
|
+
|
|
942
|
+
@me_r90 springDamper @me_m0_0 @me_m1_0 me_K me_Z
|
|
943
|
+
@me_r91 springDamper @me_m0_1 @me_m1_1 me_K me_Z
|
|
944
|
+
@me_r92 springDamper @me_m0_2 @me_m1_2 me_K me_Z
|
|
945
|
+
@me_r93 springDamper @me_m0_3 @me_m1_3 me_K me_Z
|
|
946
|
+
@me_r94 springDamper @me_m0_4 @me_m1_4 me_K me_Z
|
|
947
|
+
@me_r95 springDamper @me_m0_5 @me_m1_5 me_K me_Z
|
|
948
|
+
@me_r96 springDamper @me_m0_6 @me_m1_6 me_K me_Z
|
|
949
|
+
@me_r97 springDamper @me_m0_7 @me_m1_7 me_K me_Z
|
|
950
|
+
@me_r98 springDamper @me_m0_8 @me_m1_8 me_K me_Z
|
|
951
|
+
@me_r99 springDamper @me_m0_9 @me_m1_9 me_K me_Z
|
|
952
|
+
@me_r100 springDamper @me_m1_0 @me_m2_0 me_K me_Z
|
|
953
|
+
@me_r101 springDamper @me_m1_1 @me_m2_1 me_K me_Z
|
|
954
|
+
@me_r102 springDamper @me_m1_2 @me_m2_2 me_K me_Z
|
|
955
|
+
@me_r103 springDamper @me_m1_3 @me_m2_3 me_K me_Z
|
|
956
|
+
@me_r104 springDamper @me_m1_4 @me_m2_4 me_K me_Z
|
|
957
|
+
@me_r105 springDamper @me_m1_5 @me_m2_5 me_K me_Z
|
|
958
|
+
@me_r106 springDamper @me_m1_6 @me_m2_6 me_K me_Z
|
|
959
|
+
@me_r107 springDamper @me_m1_7 @me_m2_7 me_K me_Z
|
|
960
|
+
@me_r108 springDamper @me_m1_8 @me_m2_8 me_K me_Z
|
|
961
|
+
@me_r109 springDamper @me_m1_9 @me_m2_9 me_K me_Z
|
|
962
|
+
@me_r110 springDamper @me_m2_0 @me_m3_0 me_K me_Z
|
|
963
|
+
@me_r111 springDamper @me_m2_1 @me_m3_1 me_K me_Z
|
|
964
|
+
@me_r112 springDamper @me_m2_2 @me_m3_2 me_K me_Z
|
|
965
|
+
@me_r113 springDamper @me_m2_3 @me_m3_3 me_K me_Z
|
|
966
|
+
@me_r114 springDamper @me_m2_4 @me_m3_4 me_K me_Z
|
|
967
|
+
@me_r115 springDamper @me_m2_5 @me_m3_5 me_K me_Z
|
|
968
|
+
@me_r116 springDamper @me_m2_6 @me_m3_6 me_K me_Z
|
|
969
|
+
@me_r117 springDamper @me_m2_7 @me_m3_7 me_K me_Z
|
|
970
|
+
@me_r118 springDamper @me_m2_8 @me_m3_8 me_K me_Z
|
|
971
|
+
@me_r119 springDamper @me_m2_9 @me_m3_9 me_K me_Z
|
|
972
|
+
@me_r120 springDamper @me_m3_0 @me_m4_0 me_K me_Z
|
|
973
|
+
@me_r121 springDamper @me_m3_1 @me_m4_1 me_K me_Z
|
|
974
|
+
@me_r122 springDamper @me_m3_2 @me_m4_2 me_K me_Z
|
|
975
|
+
@me_r123 springDamper @me_m3_3 @me_m4_3 me_K me_Z
|
|
976
|
+
@me_r124 springDamper @me_m3_4 @me_m4_4 me_K me_Z
|
|
977
|
+
@me_r125 springDamper @me_m3_5 @me_m4_5 me_K me_Z
|
|
978
|
+
@me_r126 springDamper @me_m3_6 @me_m4_6 me_K me_Z
|
|
979
|
+
@me_r127 springDamper @me_m3_7 @me_m4_7 me_K me_Z
|
|
980
|
+
@me_r128 springDamper @me_m3_8 @me_m4_8 me_K me_Z
|
|
981
|
+
@me_r129 springDamper @me_m3_9 @me_m4_9 me_K me_Z
|
|
982
|
+
@me_r130 springDamper @me_m4_0 @me_m5_0 me_K me_Z
|
|
983
|
+
@me_r131 springDamper @me_m4_1 @me_m5_1 me_K me_Z
|
|
984
|
+
@me_r132 springDamper @me_m4_2 @me_m5_2 me_K me_Z
|
|
985
|
+
@me_r133 springDamper @me_m4_3 @me_m5_3 me_K me_Z
|
|
986
|
+
@me_r134 springDamper @me_m4_4 @me_m5_4 me_K me_Z
|
|
987
|
+
@me_r135 springDamper @me_m4_5 @me_m5_5 me_K me_Z
|
|
988
|
+
@me_r136 springDamper @me_m4_6 @me_m5_6 me_K me_Z
|
|
989
|
+
@me_r137 springDamper @me_m4_7 @me_m5_7 me_K me_Z
|
|
990
|
+
@me_r138 springDamper @me_m4_8 @me_m5_8 me_K me_Z
|
|
991
|
+
@me_r139 springDamper @me_m4_9 @me_m5_9 me_K me_Z
|
|
992
|
+
@me_r140 springDamper @me_m5_0 @me_m6_0 me_K me_Z
|
|
993
|
+
@me_r141 springDamper @me_m5_1 @me_m6_1 me_K me_Z
|
|
994
|
+
@me_r142 springDamper @me_m5_2 @me_m6_2 me_K me_Z
|
|
995
|
+
@me_r143 springDamper @me_m5_3 @me_m6_3 me_K me_Z
|
|
996
|
+
@me_r144 springDamper @me_m5_4 @me_m6_4 me_K me_Z
|
|
997
|
+
@me_r145 springDamper @me_m5_5 @me_m6_5 me_K me_Z
|
|
998
|
+
@me_r146 springDamper @me_m5_6 @me_m6_6 me_K me_Z
|
|
999
|
+
@me_r147 springDamper @me_m5_7 @me_m6_7 me_K me_Z
|
|
1000
|
+
@me_r148 springDamper @me_m5_8 @me_m6_8 me_K me_Z
|
|
1001
|
+
@me_r149 springDamper @me_m5_9 @me_m6_9 me_K me_Z
|
|
1002
|
+
@me_r150 springDamper @me_m6_0 @me_m7_0 me_K me_Z
|
|
1003
|
+
@me_r151 springDamper @me_m6_1 @me_m7_1 me_K me_Z
|
|
1004
|
+
@me_r152 springDamper @me_m6_2 @me_m7_2 me_K me_Z
|
|
1005
|
+
@me_r153 springDamper @me_m6_3 @me_m7_3 me_K me_Z
|
|
1006
|
+
@me_r154 springDamper @me_m6_4 @me_m7_4 me_K me_Z
|
|
1007
|
+
@me_r155 springDamper @me_m6_5 @me_m7_5 me_K me_Z
|
|
1008
|
+
@me_r156 springDamper @me_m6_6 @me_m7_6 me_K me_Z
|
|
1009
|
+
@me_r157 springDamper @me_m6_7 @me_m7_7 me_K me_Z
|
|
1010
|
+
@me_r158 springDamper @me_m6_8 @me_m7_8 me_K me_Z
|
|
1011
|
+
@me_r159 springDamper @me_m6_9 @me_m7_9 me_K me_Z
|
|
1012
|
+
@me_r160 springDamper @me_m7_0 @me_m8_0 me_K me_Z
|
|
1013
|
+
@me_r161 springDamper @me_m7_1 @me_m8_1 me_K me_Z
|
|
1014
|
+
@me_r162 springDamper @me_m7_2 @me_m8_2 me_K me_Z
|
|
1015
|
+
@me_r163 springDamper @me_m7_3 @me_m8_3 me_K me_Z
|
|
1016
|
+
@me_r164 springDamper @me_m7_4 @me_m8_4 me_K me_Z
|
|
1017
|
+
@me_r165 springDamper @me_m7_5 @me_m8_5 me_K me_Z
|
|
1018
|
+
@me_r166 springDamper @me_m7_6 @me_m8_6 me_K me_Z
|
|
1019
|
+
@me_r167 springDamper @me_m7_7 @me_m8_7 me_K me_Z
|
|
1020
|
+
@me_r168 springDamper @me_m7_8 @me_m8_8 me_K me_Z
|
|
1021
|
+
@me_r169 springDamper @me_m7_9 @me_m8_9 me_K me_Z
|
|
1022
|
+
@me_r170 springDamper @me_m8_0 @me_m9_0 me_K me_Z
|
|
1023
|
+
@me_r171 springDamper @me_m8_1 @me_m9_1 me_K me_Z
|
|
1024
|
+
@me_r172 springDamper @me_m8_2 @me_m9_2 me_K me_Z
|
|
1025
|
+
@me_r173 springDamper @me_m8_3 @me_m9_3 me_K me_Z
|
|
1026
|
+
@me_r174 springDamper @me_m8_4 @me_m9_4 me_K me_Z
|
|
1027
|
+
@me_r175 springDamper @me_m8_5 @me_m9_5 me_K me_Z
|
|
1028
|
+
@me_r176 springDamper @me_m8_6 @me_m9_6 me_K me_Z
|
|
1029
|
+
@me_r177 springDamper @me_m8_7 @me_m9_7 me_K me_Z
|
|
1030
|
+
@me_r178 springDamper @me_m8_8 @me_m9_8 me_K me_Z
|
|
1031
|
+
@me_r179 springDamper @me_m8_9 @me_m9_9 me_K me_Z
|
|
1032
|
+
|
|
1033
|
+
@out1 posOutput @me_m5_5
|
|
1034
|
+
@out2 posOutput @t_m2_1
|
|
1035
|
+
|
|
1036
|
+
*/
|