From 85ca047f37dd12c333834a008101efa29f3ca329 Mon Sep 17 00:00:00 2001
From: Jameson Graef Rollins <jrollins@finestructure.net>
Date: Mon, 21 May 2018 16:28:56 -0700
Subject: [PATCH] rename suspension thermal noise function suspR -> susptherm

---
 gwinc/gwinc.py                   | 2 +-
 gwinc/noise/suspensionthermal.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gwinc/gwinc.py b/gwinc/gwinc.py
index fe072531..dab83d96 100644
--- a/gwinc/gwinc.py
+++ b/gwinc/gwinc.py
@@ -43,7 +43,7 @@ def noise_calc(ifo, f):
     noises = {}
 
     noises['Quantum Vacuum'] = noise.quantum.shotrad(f, ifo)
-    noises['Suspension Thermal']  = noise.suspensionthermal.suspR(f, ifo)
+    noises['Suspension Thermal']  = noise.suspensionthermal.susptherm(f, ifo)
     noises['Excess Gas']  = noise.residualgas.gas(f, ifo)
     noises['Substrate Brownian']  = noise.substratethermal.subbrownian(f, ifo)
     noises['Coating Brownian']  = noise.coatingthermal.coatbrownian(f, ifo)
diff --git a/gwinc/noise/suspensionthermal.py b/gwinc/noise/suspensionthermal.py
index a18787f5..77e71260 100644
--- a/gwinc/noise/suspensionthermal.py
+++ b/gwinc/noise/suspensionthermal.py
@@ -4,7 +4,7 @@ import numpy as np
 import scipy.constants
 
 
-def suspR(f, ifo):
+def susptherm(f, ifo):
     """Suspention thermal noise.
 
     Assumes suspension transfer functions and V-H coupling have been
-- 
GitLab