Skip to content
Snippets Groups Projects
Commit 476df14c authored by Jameson Graef Rollins's avatar Jameson Graef Rollins
Browse files

remove unnecessary logging from suspension code

parent df9ded51
No related branches found
No related tags found
No related merge requests found
Pipeline #106489 passed
from __future__ import division from __future__ import division
from numpy import pi, sqrt, sin, cos, tan, real, imag, zeros from numpy import pi, sqrt, sin, cos, tan, real, imag, zeros
import numpy as np import numpy as np
import logging
from . import const from . import const
from .struct import Struct from .struct import Struct
...@@ -179,7 +178,6 @@ def suspQuad(f, sus, material='Silica'): ...@@ -179,7 +178,6 @@ def suspQuad(f, sus, material='Silica'):
else: else:
WireMaterial = 'C70Steel' WireMaterial = 'C70Steel'
logging.debug('stage {} wires: {}'.format(n, WireMaterial))
wireMat = sus[WireMaterial] wireMat = sus[WireMaterial]
alpha_w[n] = wireMat.Alpha # coeff. thermal expansion alpha_w[n] = wireMat.Alpha # coeff. thermal expansion
...@@ -205,7 +203,6 @@ def suspQuad(f, sus, material='Silica'): ...@@ -205,7 +203,6 @@ def suspQuad(f, sus, material='Silica'):
else: else:
BladeMaterial = 'MaragingSteel' BladeMaterial = 'MaragingSteel'
logging.debug('stage {} blades: {}'.format(n, BladeMaterial))
bladeMat = sus[BladeMaterial] bladeMat = sus[BladeMaterial]
alpha_b[n] = bladeMat.Alpha # coeff. thermal expansion alpha_b[n] = bladeMat.Alpha # coeff. thermal expansion
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment