From 7ae4f2f25c9264111a9bd19ac5b3c953dec6d330 Mon Sep 17 00:00:00 2001
From: Marlon Schumacher <schumacher@hfm-karlsruhe.de>
Date: Fri, 28 Mar 2025 04:02:01 +0100
Subject: [PATCH] Merge tag '0.1.0' into develop

---
 OM-SRR.lisp |   64 ++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/OM-SRR.lisp b/OM-SRR.lisp
new file mode 100644
index 0000000..49ce925
--- /dev/null
+++ b/OM-SRR.lisp
@@ -0,0 +1,64 @@
+; ****************************************************************
+; | OM-SRR, 2023-2025 M.Schumacher                               |
+; |                                                              |
+; | Library for spectral rhythm modeling via integer time ratios |
+; | (partials) as phase-aligned amplitude modulations.           |
+; |                                                              |
+; | See https://steffenkrebber.de/research/sinusoidal-run-rhythm/|
+; ****************************************************************
+;
+;This program is free software; you can redistribute it and/or
+;modify it under the terms of the GNU General Public License
+;as published by the Free Software Foundation; either version 2
+;of the License, or (at your option) any later version.
+;
+;See file LICENSE for further informations on licensing terms.
+;
+;This program is distributed in the hope that it will be useful,
+;but WITHOUT ANY WARRANTY; without even the implied warranty of
+;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;GNU General Public License for more details.
+;
+;You should have received a copy of the GNU General Public License
+;along with this program; if not, write to the Free Software
+;Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,10 USA.
+;
+;Authors: M. Schumacher
+
+
+;--------------------------------------------------
+;Variable definiton with files to load 
+;--------------------------------------------------
+
+
+(defvar *initfile* *load-pathname*)
+
+(defun lib-src-file (name)
+  (make-pathname :directory (append (pathname-directory *initfile*) (list "sources")) 
+                 :name name))
+
+(defvar *OM-SRR_files* nil)
+(setf *OM-SRR_files* '("srr"))
+
+;--------------------------------------------------
+;Loading files 
+;--------------------------------------------------
+  
+
+(mapc #'(lambda (filename) 
+          (om::compile&load (namestring (lib-src-file filename))))
+      *OM-SRR_files*)
+
+;--------------------------------------------------
+; OM subpackages initialization
+; ("sub-pack-name" subpacke-lists class-list function-list class-alias-list)
+;--------------------------------------------------
+(defvar *subpackages-list* nil)
+(setf *subpackages-list* 
+      '((Nil Nil Nil (gen-partial gen-srr polar-plot farey-sequence) Nil)))
+
+
+;--------------------------------------------------
+;filling packages
+;--------------------------------------------------
+(om::fill-library *subpackages-list*)
\ No newline at end of file

--
Gitblit v1.9.1