Physics behind Vibed

Anything that doesn't fit into other topics goes here!
Hi,

Recently, I've got interested in string sound synthesis. I've even made a model for an oscillating string (differential equations, badly heavy on CPU) and keep on fooling around with it. And then, I've discovered Vibed.

So, how does it work? Is there any physics behind it?

Thanks.
Andrew.
nctrd wrote:
Sun Aug 04, 2019 7:10 pm
Hi,
Hi, Welcome to the Forum nctrd !
Here are all important links:
http://lmms.io/forum/viewtopic.php?f=1&t=4740
-A few rules and useful forum instructions
Vibed. how does it work? Is there any physics behind it?
All of LMMS is open source!
You can dl the entire codebase and examine every line of code, and find every piece of Math behind everything!
Dl. the complete LMMS C++ code here:
https://github.com/LMMS/lmms (green button rightmost)

Recently, I've got interested in string sound synthesis. I've made a model for an oscillating string.
We are always looking for coders! If you have c++ knowledge you will be most welcome to join!
You can read all about participating and how to get your own repository, the methods for creating and submitting patches and the Master commits, Here:
https://github.com/LMMS/lmms/wiki

Project lead is Tres Finocchiaro He is the one to contact if you have special questions or run into some difficulties with the gitHub system.
https://github.com/tresf
https://github.com/LMMS/lmms/wiki/Contr ... ep-by-Step
Dear musikbear,

I have zero experience in c++ and it's quite hard for me to understand the code.
However, from https://github.com/LMMS/lmms/blob/stabl ... g_string.h, I was able to guess that the plugin creates a wavepacket from a given waveform, and then moves it back and forth aloong string. In other words, it does not explicitly model harmonic oscillations. Is that correct?

Thanks.