Commit a24fdc61 authored by Zolnierczuk, Piotr's avatar Zolnierczuk, Piotr
Browse files

cleaning up...

parent 0061c29e
Loading
Loading
Loading
Loading
+0 −0

File moved.

+6 −0
Original line number Diff line number Diff line
@@ -5,10 +5,16 @@ NSE scattering evaluator for a Rouse polymer chain
==================================

-----------------------------------------------------------------------
Original autho:
M. Monkenbusch
Juelich Center of Neutron Science
Forschungszentrum Juelich
m.monkenbusch@fz-juelich.de

Fortran to Python translation:
Piotr Zolnierczuk
zolnierczukp@ornl.gov

-----------------------------------------------------------------------
This is a little toolbox to estimate the effect of contrast and
H/D content on the dynamics data of a polymer melt in the Rouse
+2 −2
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@
PySEN revision module
"""
import sys
__version__  = "0.73"
__version__  = "0.74"
__release__  = "dev1"
__date__     = "Aug 8, 2022"
__date__     = "Aug 10, 2022"

def version(full=False):
    "get pysen version number"
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ from io import StringIO
import time
import numpy as np

from .    import ANGSTROM, get_theta
from ..    import ANGSTROM, get_theta

_THETA_MIN = 10.0

+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ import struct
import threading
from   collections import deque

from .iostrings import encode, decode
from ..iostrings import encode, decode

class NseConnection:
    """nse control program connection
Loading