3 Commits

Author SHA1 Message Date
glavic_a a781560161 Add D2O sample 2018-12-12 05:00:10 +01:00
glavic_a 53ee760eb4 Fix sample selection for simulation 2018-12-11 22:27:57 +01:00
glavic_a 5428f1ccc7 Initial model for liquids addon 2018-12-10 22:18:31 +01:00
32 changed files with 3160 additions and 1632 deletions
-1
View File
@@ -8,7 +8,6 @@ old
*.backup
.project
.settings
.idea
*.pyc
*.pyo
hosts
-9
View File
@@ -1,9 +0,0 @@
#!/bin/bash
# compress McStas hdf5 files to increase performance and save disk space
for fi in $*
do
echo $fi
h5repack -i $fi -o $fi.c -f /entry1/data/detector_list_p_x_y_t_L_sx_sy_sz/events:GZIP=5 -l /entry1/data/detector_list_p_x_y_t_L_sx_sy_sz/events:CHUNK=3072x8
mv $fi.c $fi
done
+1 -1
View File
@@ -8,7 +8,7 @@ import sys, os
from numpy import *
seterr(all='ignore')
import estia_help as eh
from aglib import mcstas_reader as mr
import mcstas_reader as mr
# Scaling factor of source monitor after normalizing by area to get to brilliance.
+422
View File
@@ -0,0 +1,422 @@
#-*- coding: utf-8 -*-
'''
Simple support library for reading, analyzing and plotting of McStas results
from the Estia instrument simulations.
Meant to be used from IPython Notebook or QtConsole, but can also be run stand alone.
'''
import os, sys
from numpy import *
try:
import h5py
except ImportError:
print "h5py not found, modern NeXuS format will not be readable."
try:
from IPython import display #@UnusedImport
from IPython.core.pylabtools import print_figure
from matplotlib.figure import Figure
from matplotlib.backends.backend_agg import FigureCanvasAgg
from matplotlib.colors import LogNorm
except ImportError:
# IPython and/or matplotlib not available, no interactive functionalities
display=None
MAX_EVTS_BATCH=50000
class McSim(object):
'''
Object representing complete simulation from McStas.
Supports either the old style McStas output with separate ASCII files
or HDF5 single file output.
Different monitors can be accessed as keys like in a dictionary. The data is only loaded when the monitor is first accessed.
'''
def __init__(self, path):
'''
Initialize the simulation. path should be the file name to either the NeXuS or the mccode.sim file.
'''
self._data={}
if path.endswith('.h5'):
self._init_hdf(path)
elif path.endswith('.sim'):
self._init_old(path)
else:
if os.path.exists(os.path.join(path,'mccode.h5')):
self._init_hdf(os.path.join(path,'mccode.h5'))
elif os.path.exists(os.path.join(path, 'mccode.sim')):
self._init_old(os.path.join(path, 'mccode.sim'))
else:
raise IOError, "Can't locate mccode.h5 of mccode.sim file in %s"%path
def _init_hdf(self, path):
self.hdf=h5py.File(path, 'r')
self.data_loader=DataLoaderHDF(self.hdf)
self.info=self.data_loader.info
def _init_old(self, path):
self.info=HeaderFile(path)
self.data_loader=DataLoaderOld(self.info, os.path.dirname(path))
def keys(self):
return self.info['data'].keys()
def monitors(self):
output=[]
for val in self.info['data'].values():
xy=(val['xvar'], val['yvar'])
if not xy in output:
output.append(xy)
output.sort()
return output
def plot(self, monitors=None):
graphs={}
for key, val in self.info['data'].items():
xy=(val['xvar'], val['yvar'])
if monitors is not None and xy!=monitors:
continue
data=self[key]
if xy in graphs:
graphs[xy].append(data)
else:
graphs[xy]=[data]
for xy, datasets in sorted(graphs.items()):
cols=min(len(datasets), 3)
rows=len(datasets)/3+1
fig=Figure(figsize=(12, 5*rows), dpi=300, facecolor='#FFFFFF')
FigureCanvasAgg(fig)
for i, data in enumerate(datasets):
ax=fig.add_subplot(rows, cols, i+1)
data.plot(ax=ax)
graphs[xy]=fig
if monitors is None:
return graphs
else:
return fig
def __getitem__(self, item):
if item in self._data:
return self._data[item]
elif item in self.keys():
data=self.data_loader.load_item(item)
self._data[item]=data
return data
else:
raise KeyError, "Can't find dataset %s"%item
class HeaderFile(object):
'''
Analyze McStas mccode.sim header files.
'''
_data=None
@property
def data(self):
return self._data['data']
def __init__(self, path):
self._data={}
data=open(path, 'r').read()
data_lines=data.splitlines()
if not data.startswith('McStas simulation description file'):
raise IOError, 'Not a valid McStas description file.'
self._data['start_time']=data_lines[1].split(':', 1)[1].strip()
self._data['program_name']=data_lines[2].split(':', 1)[1].strip()
self._data['data']=self.get_data(data)
def get_data(self, data):
output={}
start_idx=0
while start_idx<len(data):
start_idx=data.find('begin data', start_idx)
if start_idx==-1:
break
end_idx=data.find('end data', start_idx)
block=data[start_idx:end_idx].splitlines()[1:]
block_info={}
for bline in block:
item, value=bline.strip().split(':', 1)
block_info[item]=value.strip()
if item=='component':
output[value.strip()]=block_info
start_idx=end_idx
return output
def __getitem__(self, item):
return self._data[item]
class DataLoaderOld(object):
'''
Load and analyze a old style McStas format with a simulation and a set of data text files.
'''
def __init__(self, info, root):
self.info=info
self.root=root
def load_item(self, item):
item_info=self.info['data'][item]
if not item_info['type'].startswith('array_2d'):
return self.load_item_1d(item)
fname=os.path.join(self.root, item_info['filename'])
x_col=item_info['xvar']
y_col=item_info['yvar']
if x_col=='Li' and y_col=='p': # Detector_nD
cols=item_info['variables'].split()
data=loadtxt(fname, dtype={'names': cols, 'formats': ['f4']*len(cols)})
return TofData(data, item_info)
else:
raw=loadtxt(fname)
data=raw[:len(raw)/3]
return Dataset(data, item_info)
def load_item_1d(self, item):
item_info=self.info['data'][item]
fname=os.path.join(self.root, item_info['filename'])
raw=loadtxt(fname).T
data=raw[1]
errors=raw[2]
return Dataset1D(data, errors, item_info)
class DataLoaderHDF(object):
'''
Load and analyze a new style NeXuS file format.
'''
def __init__(self, hdf):
self.hdf=hdf['entry1']
self.info={}
self.info['data']={}
for item in self.hdf['data'].keys():
node=self.hdf['data/'+item]
info={}
for key, value in node.attrs.items():
info[key.strip()]=value.strip()
if info['filename'][-4:]=='.dat' or '_list.' in info['filename']:
self.info['data'][info['component']]=info
else:
self.info['data'][info['filename']]=info
info['datapath']='data/'+item
def load_item(self, item):
item_info=self.info['data'][item]
if not item_info['type'].startswith('array_2d'):
return self.load_item_1d(item)
node=self.hdf[item_info['datapath']]
x_col=item_info['xvar']
y_col=item_info['yvar']
if x_col=='Li' and y_col=='p': # Detector_nD
cols=item_info['variables'].split()
evds=node['events']
if len(evds)<=MAX_EVTS_BATCH:
data=evds.value.astype(float32).view(
dtype={'names': cols, 'formats': ['f4']*len(cols)}).flatten()
else:
ds=[]
sys.stdout.write('Reading large dataset:\n')
for i in range(len(evds)//MAX_EVTS_BATCH+1):
sys.stdout.write('\r%i/%i'%(i*MAX_EVTS_BATCH, len(evds)))
sys.stdout.flush()
ds.append(evds[i*MAX_EVTS_BATCH:(i+1)*MAX_EVTS_BATCH])
sys.stdout.write('\r%i/%i\n'%(len(evds), len(evds)))
data=vstack(ds).astype(float32).view(
dtype={'names': cols, 'formats': ['f4']*len(cols)}).flatten()
return TofData(data, item_info)
else:
data=node['data'].value.T
return Dataset(data, item_info)
def load_item_1d(self, item):
item_info=self.info['data'][item]
node=self.hdf[item_info['datapath']]
data=node['data'].value
errors=node['errors'].value
return Dataset1D(data, errors, item_info)
class Dataset1D(object):
'''
Representation of a standard McStas dataset of one variable.
'''
def __init__(self, data, errors, info):
self.data=data
self.errors=errors
self.info=info
def plot(self, log=False, ax=None):
if ax is None:
import pylab
ax=pylab.gca()
limits=map(float, self.info['xlimits'].split())
x=linspace(limits[0], limits[1], len(self.data))
ax.errorbar(x, self.data, yerr=self.errors)
if log:
ax.set_yscale('log')
else:
ax.set_yscale('linear')
ax.set_xlabel(self.info['xlabel'])
ax.set_ylabel(self.info['ylabel'])
ax.set_title(self.info['component'])
def _repr_png_(self):
'''
Image representation form ipython console/notebook.
'''
fig=Figure(figsize=(8, 5), dpi=300, facecolor='#FFFFFF')
FigureCanvasAgg(fig)
ax=fig.add_subplot(111)
self.plot(ax=ax)
return print_figure(fig, dpi=72)
class Dataset(object):
'''
Representation of a standard McStas dataset with 2D view.
'''
def __init__(self, data, info):
self.data=data
self.info=info
def plot(self, log=False, ax=None):
if ax is None:
import pylab
ax=pylab.gca()
limits=map(float, self.info['xylimits'].split())
if log:
ax.imshow(self.data, origin='lower', extent=limits, aspect='auto', norm=LogNorm())
else:
ax.imshow(self.data, origin='lower', extent=limits, aspect='auto')
ax.set_xlabel(self.info['xlabel'])
ax.set_ylabel(self.info['ylabel'])
ax.set_title(self.info['component'])
def _repr_png_(self):
'''
Image representation form ipython console/notebook.
'''
fig=Figure(figsize=(8, 5), dpi=300, facecolor='#FFFFFF')
FigureCanvasAgg(fig)
ax=fig.add_subplot(111)
self.plot(ax=ax)
return print_figure(fig, dpi=72)
class TofData(Dataset):
'''
Representation of a dataset collected with Monitor_nD
'''
def project1d(self, col, bins=50, fltr=None, newcols=None, norm=None):
'''
Generate binned data for arbitrary binning and columns.
The fltr argument can be a string with a filtering condition on the available columns.
Syntax for this filtering follows numpy array convetions like (x>5)&(abs(L)<0.3) would
be a valid statement.
newcols can be a list of (name, code) tuples, that calculate new columns from
existing ones, like newcols=[('q', '4*pi/L*sin(theta)')].
'''
columns=dict([(coli, self.data[coli]) for coli in self.data.dtype.names])
if newcols is not None:
for name, code in newcols:
columns[name]=eval(code, globals(), columns)
if norm is None:
w=self.data['p']
else:
w=eval(norm+'*p', globals(), columns)
if fltr is None:
I, x=histogram(columns[col], bins=bins, weights=w)
else:
if isinstance(fltr, basestring):
fltr=eval(fltr, globals(), columns)
I, x=histogram(columns[col][fltr], bins=bins, weights=w[fltr])
return x, I
def project2d(self, xcol, ycol, bins=50, fltr=None, newcols=None):
'''
Generate 2D binned data for arbitrary binning and columns.
The fltr argument can be a string with a filtering condition on the available columns.
Syntax for this filtering follows numpy array convetions like (x>5)&(abs(L)<0.3) would
be a valid statement.
newcols can be a list of (name, code) tuples, that calculate new columns from
existing ones, like newcols=[('q', '4*pi/L*sin(theta)')].
'''
columns=dict([(coli, self.data[coli]) for coli in self.data.dtype.names])
if newcols is not None:
for name, code in newcols:
columns[name]=eval(code, globals(), columns)
if fltr is None:
I, y, x=histogram2d(columns[ycol], columns[xcol],
bins=bins, weights=self.data['p'])
else:
if isinstance(fltr, basestring):
fltr=eval(fltr, globals(), columns)
I, y, x=histogram2d(columns[ycol][fltr], columns[xcol][fltr],
bins=bins, weights=columns['p'][fltr])
return x, y, I
def plot(self, xcol='x', ycol='y', log=False, ax=None, bins=50, fltr=None, newcols=None):
if ax is None:
import pylab
ax=pylab.gca()
x, y, I=self.project2d(xcol, ycol, bins=bins, fltr=fltr, newcols=newcols)
if log:
ax.pcolormesh(x, y, I, norm=LogNorm())
else:
ax.pcolormesh(x, y, I)
col_names=self.info['title'].split()
cols=self.info['variables'].split()
try:
ax.set_xlabel(xcol+'-'+col_names[cols.index(xcol)])
except ValueError:
ax.set_xlabel(xcol)
try:
ax.set_ylabel(ycol+'-'+col_names[cols.index(ycol)])
except ValueError:
ax.set_ylabel(ycol)
ax.set_title(self.info['component'])
def plot1d(self, col='x', log=False, ax=None, bins=50, fltr=None, newcols=None):
if ax is None:
import pylab
ax=pylab.gca()
x, I=self.project1d(col, bins=bins, fltr=fltr, newcols=newcols)
if log:
ax.semilogy((x[:-1]+x[1:])/2., I)
else:
ax.plot((x[:-1]+x[1:])/2., I)
col_names=self.info['title'].split()
cols=self.info['variables'].split()
try:
ax.set_xlabel(col+'-'+col_names[cols.index(col)])
except ValueError:
ax.set_xlabel(col)
ax.set_ylabel('Intensity')
ax.set_title(self.info['component'])
+602
View File
@@ -0,0 +1,602 @@
# Dataset "D2O" exported from GenX on Wed Dec 12 04:56:52 2018
# Column lables:
# q R
1.666666666666666774e-03 1.000000000000000444e+00
3.333333333333333547e-03 9.999999999999997780e-01
5.000000000000000104e-03 9.999999999999997780e-01
6.666666666666667095e-03 1.000000000000000000e+00
8.333333333333333218e-03 1.000000000000000000e+00
1.000000000000000021e-02 9.999999999999997780e-01
1.166666666666666546e-02 1.000000000000000000e+00
1.333333333333333419e-02 1.000000000000000000e+00
1.499999999999999944e-02 1.000000000000000000e+00
1.666666666666666644e-02 9.999999999999997780e-01
1.833333333333333343e-02 4.278890099662767121e-01
2.000000000000000042e-02 1.488213407917928499e-01
2.166666666666666741e-02 7.884172397716723846e-02
2.333333333333333440e-02 4.817452607189460362e-02
2.500000000000000486e-02 3.189361318639775261e-02
2.666666666666666838e-02 2.227351089491558592e-02
2.833333333333333537e-02 1.617286323369671042e-02
3.000000000000000236e-02 1.210130221930963597e-02
3.166666666666666935e-02 9.275545669075232341e-03
3.333333333333333287e-02 7.252320052814169304e-03
3.500000000000000333e-02 5.766184773509967602e-03
3.666666666666666685e-02 4.650893428800271893e-03
3.833333333333333731e-02 3.798435003476626718e-03
4.000000000000000083e-02 3.136449158010019053e-03
4.166666666666666435e-02 2.615177649439983341e-03
4.333333333333333481e-02 2.199624859348910891e-03
4.500000000000000527e-02 1.864688519115220407e-03
4.666666666666666879e-02 1.592047104649371280e-03
4.833333333333333925e-02 1.368119547985798337e-03
4.999999999999999584e-02 1.182697864477368077e-03
5.166666666666666630e-02 1.028012492027462850e-03
5.333333333333333676e-02 8.980819969847711167e-04
5.500000000000000028e-02 7.882533389725678323e-04
5.666666666666667074e-02 6.948721016997541113e-04
5.833333333333334120e-02 6.150427933261069530e-04
6.000000000000000472e-02 5.464524855421789510e-04
6.166666666666666824e-02 4.872395943257391100e-04
6.333333333333333870e-02 4.358952326153466895e-04
6.500000000000000222e-02 3.911883347291949869e-04
6.666666666666666574e-02 3.521083144256650943e-04
6.833333333333334314e-02 3.178207833803634160e-04
7.000000000000000666e-02 2.876330878189759703e-04
7.166666666666667018e-02 2.609672896223826869e-04
7.333333333333333370e-02 2.373388377584093804e-04
7.499999999999999722e-02 2.163396222927348015e-04
7.666666666666667462e-02 1.976244279443217474e-04
7.833333333333333814e-02 1.809000424665311657e-04
8.000000000000000167e-02 1.659164515183386701e-04
8.166666666666666519e-02 1.524596832757783220e-04
8.333333333333332871e-02 1.403459649391344810e-04
8.500000000000000611e-02 1.294169281633042532e-04
8.666666666666666963e-02 1.195356575005832348e-04
8.833333333333333315e-02 1.105834197134533182e-04
9.000000000000001055e-02 1.024569455916587762e-04
9.166666666666667407e-02 9.506616212616428763e-05
9.333333333333333759e-02 8.833229335679883471e-05
9.500000000000001499e-02 8.218626426822687851e-05
9.666666666666667851e-02 7.656735477319774488e-05
9.833333333333332815e-02 7.142206085828434919e-05
9.999999999999999167e-02 6.670312795820712841e-05
1.016666666666666691e-01 6.236872801538500633e-05
1.033333333333333326e-01 5.838175681406183431e-05
1.049999999999999961e-01 5.470923231784354554e-05
1.066666666666666735e-01 5.132177809103187119e-05
1.083333333333333370e-01 4.819317860823825678e-05
1.100000000000000006e-01 4.529999547886719982e-05
1.116666666666666780e-01 4.262123543222435878e-05
1.133333333333333415e-01 4.013806240326980157e-05
1.150000000000000050e-01 3.783354729055566355e-05
1.166666666666666824e-01 3.569244997606189424e-05
1.183333333333333459e-01 3.370102904102350720e-05
1.199999999999999956e-01 3.184687531417531464e-05
1.216666666666666591e-01 3.011876597473503737e-05
1.233333333333333365e-01 2.850653642251948946e-05
1.250000000000000000e-01 2.700096753867208433e-05
1.266666666666666774e-01 2.559368630616589346e-05
1.283333333333333270e-01 2.427707805072443407e-05
1.300000000000000044e-01 2.304420880910700020e-05
1.316666666666666818e-01 2.188875654044092456e-05
1.333333333333333315e-01 2.080495007345798850e-05
1.350000000000000089e-01 1.978751483337357349e-05
1.366666666666666863e-01 1.883162452074562727e-05
1.383333333333333359e-01 1.793285802466960840e-05
1.400000000000000133e-01 1.708716094682676266e-05
1.416666666666666630e-01 1.629081119377076716e-05
1.433333333333333404e-01 1.554038816436415657e-05
1.449999999999999900e-01 1.483274511916031133e-05
1.466666666666666674e-01 1.416498437028349574e-05
1.483333333333333448e-01 1.353443497503935812e-05
1.499999999999999944e-01 1.293863265526270861e-05
1.516666666666666718e-01 1.237530169802975281e-05
1.533333333333333492e-01 1.184233862257320649e-05
1.549999999999999989e-01 1.133779742373565549e-05
1.566666666666666763e-01 1.085987622444452896e-05
1.583333333333333537e-01 1.040690518911860359e-05
1.600000000000000033e-01 9.977335566874202179e-06
1.616666666666666530e-01 9.569729748255288910e-06
1.633333333333333304e-01 9.182752232256569594e-06
1.650000000000000078e-01 8.815161411882592866e-06
1.666666666666666574e-01 8.465802096553117905e-06
1.683333333333333348e-01 8.133598698563745824e-06
1.700000000000000122e-01 7.817549018652005991e-06
1.716666666666666619e-01 7.516718572640144719e-06
1.733333333333333393e-01 7.230235407255999659e-06
1.750000000000000167e-01 6.957285358675551028e-06
1.766666666666666663e-01 6.697107712119624589e-06
1.783333333333333437e-01 6.448991225139495569e-06
1.800000000000000211e-01 6.212270481001756507e-06
1.816666666666666707e-01 5.986322541985373861e-06
1.833333333333333481e-01 5.770563875403461062e-06
1.850000000000000255e-01 5.564447527857933166e-06
1.866666666666666752e-01 5.367460525630802926e-06
1.883333333333333526e-01 5.179121481263889293e-06
1.900000000000000300e-01 4.998978388304243934e-06
1.916666666666666796e-01 4.826606587902449178e-06
1.933333333333333570e-01 4.661606892498666493e-06
1.949999999999999789e-01 4.503603853220810334e-06
1.966666666666666563e-01 4.352244158853627849e-06
1.983333333333333337e-01 4.207195155366130449e-06
1.999999999999999833e-01 4.068143475980169914e-06
2.016666666666666607e-01 3.934793772686430275e-06
2.033333333333333381e-01 3.806867540912906612e-06
2.049999999999999878e-01 3.684102029812693030e-06
2.066666666666666652e-01 3.566249231277894375e-06
2.083333333333333426e-01 3.453074941419783672e-06
2.099999999999999922e-01 3.344357888775087484e-06
2.116666666666666696e-01 3.239888924009728753e-06
2.133333333333333470e-01 3.139470266334596331e-06
2.149999999999999967e-01 3.042914802251790103e-06
2.166666666666666741e-01 2.950045432621829097e-06
2.183333333333333515e-01 2.860694464382629580e-06
2.200000000000000011e-01 2.774703043543939583e-06
2.216666666666666785e-01 2.691920626371921660e-06
2.233333333333333559e-01 2.612204485923215747e-06
2.250000000000000056e-01 2.535419251321134289e-06
2.266666666666666829e-01 2.461436477374981832e-06
2.283333333333333603e-01 2.390134242339578590e-06
2.300000000000000100e-01 2.321396771782409159e-06
2.316666666666666874e-01 2.255114086686947400e-06
2.333333333333333648e-01 2.191181674072064817e-06
2.350000000000000144e-01 2.129500178532259954e-06
2.366666666666666641e-01 2.069975113235872753e-06
2.383333333333333137e-01 2.012516589024861832e-06
2.399999999999999911e-01 1.957039060362928086e-06
2.416666666666666685e-01 1.903461086978215846e-06
2.433333333333333182e-01 1.851705110125668454e-06
2.449999999999999956e-01 1.801697242484656788e-06
2.466666666666666730e-01 1.753367070768793780e-06
2.483333333333333226e-01 1.706647470202641125e-06
2.500000000000000000e-01 1.661474430073583966e-06
2.516666666666666496e-01 1.617786889634525484e-06
2.533333333333333548e-01 1.575526583672322839e-06
2.550000000000000044e-01 1.534637897117887747e-06
2.566666666666666541e-01 1.495067728112825765e-06
2.583333333333333592e-01 1.456765358986138293e-06
2.600000000000000089e-01 1.419682334641076900e-06
2.616666666666666585e-01 1.383772347877744191e-06
2.633333333333333637e-01 1.348991131217263989e-06
2.650000000000000133e-01 1.315296354818597880e-06
2.666666666666666630e-01 1.282647530111641326e-06
2.683333333333333681e-01 1.251005918788133922e-06
2.700000000000000178e-01 1.220334446827233344e-06
2.716666666666666674e-01 1.190597623243038357e-06
2.733333333333333726e-01 1.161761463270364772e-06
2.750000000000000222e-01 1.133793415721052668e-06
2.766666666666666718e-01 1.106662294257604684e-06
2.783333333333333770e-01 1.080338212354247784e-06
2.799999999999999711e-01 1.054792521725799368e-06
2.816666666666666763e-01 1.029997754018219457e-06
2.833333333333333259e-01 1.005927565572790483e-06
2.849999999999999756e-01 9.825566850820815396e-07
2.866666666666666807e-01 9.598608639732615301e-07
2.883333333333333304e-01 9.378168293585886465e-07
2.899999999999999800e-01 9.164022394086225599e-07
2.916666666666666852e-01 8.955956410101256596e-07
2.933333333333333348e-01 8.753764295778831038e-07
2.949999999999999845e-01 8.557248109005632261e-07
2.966666666666666896e-01 8.366217649064254447e-07
2.983333333333333393e-01 8.180490112424303144e-07
2.999999999999999889e-01 7.999889765662185461e-07
3.016666666666666941e-01 7.824247634566031229e-07
3.033333333333333437e-01 7.653401208536856050e-07
3.049999999999999933e-01 7.487194159467357586e-07
3.066666666666666985e-01 7.325476074302012377e-07
3.083333333333333481e-01 7.168102200542004489e-07
3.099999999999999978e-01 7.014933204016261675e-07
3.116666666666667029e-01 6.865834938247368856e-07
3.133333333333333526e-01 6.720678224807055402e-07
3.150000000000000022e-01 6.579338644088638659e-07
3.166666666666667074e-01 6.441696335933557605e-07
3.183333333333333570e-01 6.307635809619567706e-07
3.200000000000000067e-01 6.177045762704861100e-07
3.216666666666666563e-01 6.049818908285881516e-07
3.233333333333333059e-01 5.925851810228969717e-07
3.250000000000000111e-01 5.805044725975379231e-07
3.266666666666666607e-01 5.687301456524136093e-07
3.283333333333333104e-01 5.572529203243753383e-07
3.300000000000000155e-01 5.460638431155777233e-07
3.316666666666666652e-01 5.351542738380492230e-07
3.333333333333333148e-01 5.245158731424355772e-07
3.349999999999999645e-01 5.141405906029524026e-07
3.366666666666666696e-01 5.040206533302537216e-07
3.383333333333333193e-01 4.941485550876948170e-07
3.400000000000000244e-01 4.845170458847093710e-07
3.416666666666666186e-01 4.751191220255591928e-07
3.433333333333332682e-01 4.659480165906534015e-07
3.449999999999999734e-01 4.569971903295460034e-07
3.466666666666666230e-01 4.482603229469790451e-07
3.483333333333333282e-01 4.397313047614977070e-07
3.499999999999999223e-01 4.314042287208653742e-07
3.516666666666666274e-01 4.232733827558140539e-07
3.533333333333332771e-01 4.153332424573397253e-07
3.549999999999999822e-01 4.075784640615351313e-07
3.566666666666666319e-01 4.000038777292889257e-07
3.583333333333333370e-01 3.926044811040436616e-07
3.599999999999999312e-01 3.853754331392276300e-07
3.616666666666666363e-01 3.783120481782318474e-07
3.633333333333332860e-01 3.714097902796220345e-07
3.649999999999999911e-01 3.646642677731980957e-07
3.666666666666666408e-01 3.580712280380514568e-07
3.683333333333333459e-01 3.516265524931203130e-07
3.699999999999999400e-01 3.453262517889697274e-07
3.716666666666666452e-01 3.391664611933971690e-07
3.733333333333332948e-01 3.331434361608929561e-07
3.750000000000000000e-01 3.272535480795934377e-07
3.766666666666666496e-01 3.214932801861428377e-07
3.783333333333333548e-01 3.158592236417421358e-07
3.799999999999999489e-01 3.103480737630341399e-07
3.816666666666666541e-01 3.049566263996402449e-07
3.833333333333333037e-01 2.996817744538079836e-07
3.850000000000000089e-01 2.945205045339781409e-07
3.866666666666666585e-01 2.894698937386802210e-07
3.883333333333332527e-01 2.845271065633872936e-07
3.899999999999999578e-01 2.796893919258994434e-07
3.916666666666666075e-01 2.749540803056783491e-07
3.933333333333333126e-01 2.703185809912008519e-07
3.949999999999999623e-01 2.657803794317688377e-07
3.966666666666666674e-01 2.613370346887342655e-07
3.983333333333332615e-01 2.569861769826488238e-07
3.999999999999999667e-01 2.527255053318415819e-07
4.016666666666666163e-01 2.485527852785805369e-07
4.033333333333333215e-01 2.444658466998234756e-07
4.049999999999999711e-01 2.404625816985930862e-07
4.066666666666666763e-01 2.365409425726759068e-07
4.083333333333332704e-01 2.326989398574939118e-07
4.099999999999999756e-01 2.289346404410401519e-07
4.116666666666666252e-01 2.252461657459381559e-07
4.133333333333333304e-01 2.216316899786217051e-07
4.149999999999999800e-01 2.180894384403688449e-07
4.166666666666666852e-01 2.146176858994822517e-07
4.183333333333332793e-01 2.112147550215341852e-07
4.199999999999999845e-01 2.078790148552956769e-07
4.216666666666666341e-01 2.046088793723830935e-07
4.233333333333333393e-01 2.014028060586591008e-07
4.249999999999999889e-01 1.982592945545198166e-07
4.266666666666666941e-01 1.951768853434860026e-07
4.283333333333332882e-01 1.921541584862062874e-07
4.299999999999999378e-01 1.891897323983826992e-07
4.316666666666666430e-01 1.862822626711279980e-07
4.333333333333332926e-01 1.834304409319838172e-07
4.349999999999999978e-01 1.806329937448558671e-07
4.366666666666665919e-01 1.778886815480091343e-07
4.383333333333332971e-01 1.751962976278381794e-07
4.399999999999999467e-01 1.725546671275221688e-07
4.416666666666666519e-01 1.699626460896338315e-07
4.433333333333333015e-01 1.674191205304111419e-07
4.450000000000000067e-01 1.649230055455147006e-07
4.466666666666666008e-01 1.624732444456537195e-07
4.483333333333333059e-01 1.600688079208929665e-07
4.499999999999999556e-01 1.577086932327046181e-07
4.516666666666666607e-01 1.553919234328560753e-07
4.533333333333333104e-01 1.531175466080692588e-07
4.550000000000000155e-01 1.508846351492376930e-07
4.566666666666666097e-01 1.486922850448507061e-07
4.583333333333333148e-01 1.465396151971450857e-07
4.599999999999999645e-01 1.444257667609723853e-07
4.616666666666666696e-01 1.423499025033281690e-07
4.633333333333333193e-01 1.403112061841498309e-07
4.650000000000000244e-01 1.383088819569432176e-07
4.666666666666666186e-01 1.363421537881076345e-07
4.683333333333333237e-01 1.344102648954561287e-07
4.699999999999999734e-01 1.325124772039488831e-07
4.716666666666666230e-01 1.306480708193427343e-07
4.733333333333333282e-01 1.288163435178928122e-07
4.749999999999999223e-01 1.270166102522842302e-07
4.766666666666666274e-01 1.252482026731469324e-07
4.783333333333332771e-01 1.235104686655383796e-07
4.799999999999999822e-01 1.218027718995583457e-07
4.816666666666666319e-01 1.201244913953094081e-07
4.833333333333333370e-01 1.184750211009893069e-07
4.849999999999999312e-01 1.168537694842340232e-07
4.866666666666666363e-01 1.152601591357136128e-07
4.883333333333332860e-01 1.136936263851973570e-07
4.899999999999999911e-01 1.121536209290883352e-07
4.916666666666666408e-01 1.106396054692444604e-07
4.933333333333333459e-01 1.091510553630105115e-07
4.949999999999999400e-01 1.076874582836395939e-07
4.966666666666666452e-01 1.062483138907317179e-07
4.983333333333332948e-01 1.048331335110549754e-07
5.000000000000000000e-01 1.034414398283543063e-07
5.016666666666665941e-01 1.020727665829383066e-07
5.033333333333332993e-01 1.007266582795142976e-07
5.050000000000000044e-01 9.940266990459173164e-08
5.066666666666667096e-01 9.810036665122127283e-08
5.083333333333333037e-01 9.681932365250397800e-08
5.100000000000000089e-01 9.555912572272193437e-08
5.116666666666666030e-01 9.431936710605483167e-08
5.133333333333333082e-01 9.309965123230888181e-08
5.150000000000000133e-01 9.189959048042863459e-08
5.166666666666666075e-01 9.071880594796567180e-08
5.183333333333333126e-01 8.955692722788657699e-08
5.199999999999999067e-01 8.841359219170529006e-08
5.216666666666666119e-01 8.728844677830060142e-08
5.233333333333333171e-01 8.618114478944762623e-08
5.250000000000000222e-01 8.509134769065551672e-08
5.266666666666666163e-01 8.401872441814319854e-08
5.283333333333333215e-01 8.296295119065706527e-08
5.299999999999999156e-01 8.192371132726176387e-08
5.316666666666666208e-01 8.090069506964976861e-08
5.333333333333333259e-01 7.989359940991245132e-08
5.350000000000000311e-01 7.890212792294620869e-08
5.366666666666666252e-01 7.792599060318702045e-08
5.383333333333333304e-01 7.696490370652527585e-08
5.399999999999999245e-01 7.601858959631580589e-08
5.416666666666666297e-01 7.508677659314320962e-08
5.433333333333333348e-01 7.416919882963958646e-08
5.450000000000000400e-01 7.326559610846012639e-08
5.466666666666666341e-01 7.237571376482805913e-08
5.483333333333333393e-01 7.149930253213303793e-08
5.499999999999999334e-01 7.063611841175256497e-08
5.516666666666666385e-01 6.978592254615237399e-08
5.533333333333333437e-01 6.894848109549501148e-08
5.550000000000000488e-01 6.812356511723137695e-08
5.566666666666666430e-01 6.731095044973926732e-08
5.583333333333332371e-01 6.651041759806650711e-08
5.599999999999999423e-01 6.572175162342982274e-08
5.616666666666666474e-01 6.494474203552961160e-08
5.633333333333333526e-01 6.417918268740402335e-08
5.649999999999999467e-01 6.342487167345138111e-08
5.666666666666666519e-01 6.268161122997877260e-08
5.683333333333332460e-01 6.194920763820793676e-08
5.699999999999999512e-01 6.122747113030067724e-08
5.716666666666666563e-01 6.051621579725066012e-08
5.733333333333333615e-01 5.981525949950748832e-08
5.749999999999999556e-01 5.912442377991602164e-08
5.766666666666666607e-01 5.844353377899839119e-08
5.783333333333332549e-01 5.777241815195687396e-08
5.799999999999999600e-01 5.711090898859819714e-08
5.816666666666666652e-01 5.645884173448569610e-08
5.833333333333333703e-01 5.581605511470497935e-08
5.849999999999999645e-01 5.518239105925946357e-08
5.866666666666666696e-01 5.455769463067958281e-08
5.883333333333332638e-01 5.394181395298541755e-08
5.899999999999999689e-01 5.333460014302300771e-08
5.916666666666666741e-01 5.273590724301440439e-08
5.933333333333333792e-01 5.214559215520071354e-08
5.949999999999999734e-01 5.156351457791591065e-08
5.966666666666666785e-01 5.098953694326822462e-08
5.983333333333332726e-01 5.042352435646910014e-08
5.999999999999999778e-01 4.986534453667874591e-08
6.016666666666666829e-01 4.931486775920430857e-08
6.033333333333332771e-01 4.877196679922090596e-08
6.049999999999999822e-01 4.823651687681002158e-08
6.066666666666665764e-01 4.770839560356234247e-08
6.083333333333332815e-01 4.718748293010142776e-08
6.099999999999999867e-01 4.667366109538092527e-08
6.116666666666666918e-01 4.616681457675680997e-08
6.133333333333332860e-01 4.566683004160191730e-08
6.149999999999999911e-01 4.517359629995142803e-08
6.166666666666665853e-01 4.468700425834689817e-08
6.183333333333332904e-01 4.420694687473174789e-08
6.199999999999999956e-01 4.373331911448575834e-08
6.216666666666667007e-01 4.326601790764034557e-08
6.233333333333332948e-01 4.280494210676177292e-08
6.250000000000000000e-01 4.234999244626248742e-08
6.266666666666665941e-01 4.190107150236622004e-08
6.283333333333332993e-01 4.145808365429422949e-08
6.300000000000000044e-01 4.102093504606244872e-08
6.316666666666667096e-01 4.058953354952004420e-08
6.333333333333333037e-01 4.016378872788478652e-08
6.350000000000000089e-01 3.974361180054057285e-08
6.366666666666666030e-01 3.932891560836080469e-08
6.383333333333333082e-01 3.891961458003366657e-08
6.400000000000000133e-01 3.851562469891549018e-08
6.416666666666666075e-01 3.811686347104804092e-08
6.433333333333333126e-01 3.772324989352787249e-08
6.449999999999999067e-01 3.733470442382901695e-08
6.466666666666666119e-01 3.695114894991631394e-08
6.483333333333333171e-01 3.657250676073420709e-08
6.500000000000000222e-01 3.619870251755798537e-08
6.516666666666666163e-01 3.582966222627760775e-08
6.533333333333333215e-01 3.546531320962220248e-08
6.549999999999999156e-01 3.510558408087192307e-08
6.566666666666666208e-01 3.475040471735568370e-08
6.583333333333333259e-01 3.439970623520317829e-08
6.600000000000000311e-01 3.405342096424553406e-08
6.616666666666666252e-01 3.371148242375067629e-08
6.633333333333333304e-01 3.337382529844583069e-08
6.649999999999999245e-01 3.304038541531268527e-08
6.666666666666666297e-01 3.271109972085879636e-08
6.683333333333333348e-01 3.238590625873510041e-08
6.699999999999999289e-01 3.206474414802221109e-08
6.716666666666667451e-01 3.174755356198754107e-08
6.733333333333333393e-01 3.143427570727327899e-08
6.749999999999999334e-01 3.112485280338944387e-08
6.766666666666666385e-01 3.081922806305666575e-08
6.783333333333333437e-01 3.051734567259488484e-08
6.800000000000000488e-01 3.021915077290711772e-08
6.816666666666666430e-01 2.992458944089847277e-08
6.833333333333332371e-01 2.963360867123555706e-08
6.849999999999999423e-01 2.934615635857900073e-08
6.866666666666666474e-01 2.906218128011027574e-08
6.883333333333333526e-01 2.878163307851241170e-08
6.899999999999999467e-01 2.850446224533779264e-08
6.916666666666665408e-01 2.823062010459122576e-08
6.933333333333333570e-01 2.796005879684877517e-08
6.949999999999999512e-01 2.769273126365537854e-08
6.966666666666666563e-01 2.742859123214359243e-08
6.983333333333332504e-01 2.716759320021219980e-08
7.000000000000000666e-01 2.690969242177687162e-08
7.016666666666666607e-01 2.665484489248551212e-08
7.033333333333332549e-01 2.640300733572920854e-08
7.049999999999999600e-01 2.615413718884067298e-08
7.066666666666666652e-01 2.590819258975669951e-08
7.083333333333333703e-01 2.566513236382797849e-08
7.099999999999999645e-01 2.542491601092621619e-08
7.116666666666665586e-01 2.518750369291540244e-08
7.133333333333333748e-01 2.495285622115671481e-08
7.149999999999999689e-01 2.472093504466301426e-08
7.166666666666666741e-01 2.449170223802871503e-08
7.183333333333332682e-01 2.426512049009232800e-08
7.200000000000000844e-01 2.404115309236922660e-08
7.216666666666666785e-01 2.381976392810350769e-08
7.233333333333332726e-01 2.360091746134887006e-08
7.249999999999999778e-01 2.338457872624707644e-08
7.266666666666666829e-01 2.317071331677937767e-08
7.283333333333333881e-01 2.295928737625747089e-08
7.299999999999999822e-01 2.275026758767343839e-08
7.316666666666665764e-01 2.254362116355122094e-08
7.333333333333332815e-01 2.233931583664113037e-08
7.349999999999999867e-01 2.213731985027616766e-08
7.366666666666666918e-01 2.193760194928167534e-08
7.383333333333332860e-01 2.174013137095134288e-08
7.399999999999998801e-01 2.154487783611315651e-08
7.416666666666666963e-01 2.135181154056998901e-08
7.433333333333332904e-01 2.116090314648889765e-08
7.449999999999999956e-01 2.097212377417742691e-08
7.466666666666665897e-01 2.078544499389019261e-08
7.483333333333334059e-01 2.060083881779605820e-08
7.500000000000000000e-01 2.041827769220850997e-08
7.516666666666665941e-01 2.023773448986047171e-08
7.533333333333332993e-01 2.005918250241342328e-08
7.550000000000000044e-01 1.988259543300715027e-08
7.566666666666667096e-01 1.970794738916072117e-08
7.583333333333333037e-01 1.953521287556203333e-08
7.599999999999998979e-01 1.936436678714065848e-08
7.616666666666667140e-01 1.919538440231357548e-08
7.633333333333333082e-01 1.902824137623867863e-08
7.650000000000000133e-01 1.886291373433779472e-08
7.666666666666666075e-01 1.869937786578347270e-08
7.683333333333334236e-01 1.853761051726879840e-08
7.700000000000000178e-01 1.837758878687452184e-08
7.716666666666666119e-01 1.821929011783787269e-08
7.733333333333333171e-01 1.806269229286720887e-08
7.749999999999999112e-01 1.790777342811779587e-08
7.766666666666667274e-01 1.775451196755162606e-08
7.783333333333333215e-01 1.760288667738289432e-08
7.799999999999999156e-01 1.745287664051361354e-08
7.816666666666666208e-01 1.730446125118687474e-08
7.833333333333333259e-01 1.715762020962761326e-08
7.850000000000000311e-01 1.701233351704282816e-08
7.866666666666666252e-01 1.686858147028946339e-08
7.883333333333332194e-01 1.672634465708305349e-08
7.900000000000000355e-01 1.658560395101963153e-08
7.916666666666666297e-01 1.644634050676316584e-08
7.933333333333333348e-01 1.630853575537531813e-08
7.949999999999999289e-01 1.617217139965928020e-08
7.966666666666667451e-01 1.603722940962488197e-08
7.983333333333333393e-01 1.590369201808942332e-08
7.999999999999999334e-01 1.577154171623564136e-08
8.016666666666666385e-01 1.564076124937348188e-08
8.033333333333333437e-01 1.551133361269191143e-08
8.050000000000000488e-01 1.538324204720832969e-08
8.066666666666666430e-01 1.525647003563696443e-08
8.083333333333332371e-01 1.513100129843471658e-08
8.100000000000000533e-01 1.500681978991802039e-08
8.116666666666666474e-01 1.488390969444918677e-08
8.133333333333333526e-01 1.476225542257474868e-08
8.149999999999999467e-01 1.464184160746584814e-08
8.166666666666665408e-01 1.452265310120673145e-08
8.183333333333333570e-01 1.440467497126517943e-08
8.199999999999999512e-01 1.428789249699296266e-08
8.216666666666666563e-01 1.417229116623683953e-08
8.233333333333332504e-01 1.405785667186510569e-08
8.250000000000000666e-01 1.394457490861186366e-08
8.266666666666666607e-01 1.383243196969003584e-08
8.283333333333332549e-01 1.372141414370212119e-08
8.299999999999999600e-01 1.361150791144756097e-08
8.316666666666666652e-01 1.350269994286487373e-08
8.333333333333333703e-01 1.339497709408880801e-08
8.349999999999999645e-01 1.328832640432764461e-08
8.366666666666665586e-01 1.318273509311794788e-08
8.383333333333333748e-01 1.307819055733634102e-08
8.399999999999999689e-01 1.297468036850652034e-08
8.416666666666666741e-01 1.287219226991138080e-08
8.433333333333332682e-01 1.277071417399567383e-08
8.450000000000000844e-01 1.267023415964879515e-08
8.466666666666666785e-01 1.257074046959427720e-08
8.483333333333332726e-01 1.247222150785344985e-08
8.499999999999999778e-01 1.237466583715033664e-08
8.516666666666666829e-01 1.227806217652134765e-08
8.533333333333333881e-01 1.218239939883500653e-08
8.549999999999999822e-01 1.208766652838345038e-08
8.566666666666665764e-01 1.199385273852943676e-08
8.583333333333332815e-01 1.190094734947819867e-08
8.599999999999999867e-01 1.180893982590323440e-08
8.616666666666666918e-01 1.171781977475372466e-08
8.633333333333332860e-01 1.162757694308454006e-08
8.649999999999998801e-01 1.153820121588110024e-08
8.666666666666666963e-01 1.144968261394877284e-08
8.683333333333332904e-01 1.136201129182400759e-08
8.699999999999999956e-01 1.127517753573424751e-08
8.716666666666665897e-01 1.118917176159198780e-08
8.733333333333334059e-01 1.110398451302235871e-08
8.750000000000000000e-01 1.101960645941020503e-08
8.766666666666665941e-01 1.093602839401977062e-08
8.783333333333332993e-01 1.085324123207920940e-08
8.800000000000000044e-01 1.077123600896318528e-08
8.816666666666667096e-01 1.069000387835297257e-08
8.833333333333333037e-01 1.060953611051815378e-08
8.849999999999998979e-01 1.052982409048395294e-08
8.866666666666667140e-01 1.045085931638380284e-08
8.883333333333333082e-01 1.037263339768496325e-08
8.900000000000000133e-01 1.029513805359657539e-08
8.916666666666666075e-01 1.021836511140186732e-08
8.933333333333334236e-01 1.014230650488078171e-08
8.950000000000000178e-01 1.006695427264572650e-08
8.966666666666666119e-01 9.992300556679207259e-09
8.983333333333333171e-01 9.918337600745895184e-09
8.999999999999999112e-01 9.845057748929442197e-09
9.016666666666667274e-01 9.772453444094858069e-09
9.033333333333333215e-01 9.700517226510004005e-09
9.049999999999999156e-01 9.629241732331423638e-09
9.066666666666666208e-01 9.558619692283719409e-09
9.083333333333333259e-01 9.488643930180032504e-09
9.100000000000000311e-01 9.419307361657381304e-09
9.116666666666666252e-01 9.350602992777571408e-09
9.133333333333332194e-01 9.282523918710001498e-09
9.150000000000000355e-01 9.215063322447187502e-09
9.166666666666666297e-01 9.148214473575396844e-09
9.183333333333333348e-01 9.081970726925700499e-09
9.199999999999999289e-01 9.016325521431505870e-09
9.216666666666667451e-01 8.951272378854467038e-09
9.233333333333333393e-01 8.886804902622282763e-09
9.249999999999999334e-01 8.822916776661787834e-09
9.266666666666666385e-01 8.759601764205443938e-09
9.283333333333333437e-01 8.696853706684206389e-09
9.300000000000000488e-01 8.634666522603989519e-09
9.316666666666666430e-01 8.573034206450921255e-09
9.333333333333332371e-01 8.511950827591616428e-09
9.350000000000000533e-01 8.451410529212845376e-09
9.366666666666666474e-01 8.391407527299304141e-09
9.383333333333333526e-01 8.331936109551314815e-09
9.399999999999999467e-01 8.272990634416855476e-09
9.416666666666665408e-01 8.214565530084408238e-09
9.433333333333333570e-01 8.156655293449003333e-09
9.449999999999999512e-01 8.099254489222038774e-09
9.466666666666666563e-01 8.042357748948282073e-09
9.483333333333332504e-01 7.985959770017702085e-09
9.500000000000000666e-01 7.930055314828554130e-09
9.516666666666666607e-01 7.874639209806676320e-09
9.533333333333332549e-01 7.819706344574867867e-09
9.549999999999999600e-01 7.765251671021222332e-09
9.566666666666666652e-01 7.711270202443769926e-09
9.583333333333333703e-01 7.657757012728165687e-09
9.599999999999999645e-01 7.604707235476974347e-09
9.616666666666665586e-01 7.552116063192771580e-09
9.633333333333333748e-01 7.499978746463553073e-09
9.649999999999999689e-01 7.448290593170392285e-09
9.666666666666666741e-01 7.397046967677337799e-09
9.683333333333332682e-01 7.346243290102658937e-09
9.700000000000000844e-01 7.295875035473213223e-09
9.716666666666666785e-01 7.245937733077665596e-09
9.733333333333332726e-01 7.196426965634166866e-09
9.749999999999999778e-01 7.147338368597130869e-09
9.766666666666666829e-01 7.098667629435502836e-09
9.783333333333333881e-01 7.050410486950454502e-09
9.799999999999999822e-01 7.002562730545970454e-09
9.816666666666665764e-01 6.955120199529657999e-09
9.833333333333332815e-01 6.908078782489885956e-09
9.849999999999999867e-01 6.861434416587950486e-09
9.866666666666666918e-01 6.815183086926430052e-09
9.883333333333332860e-01 6.769320825889527906e-09
9.899999999999998801e-01 6.723843712493391200e-09
9.916666666666666963e-01 6.678747871810286573e-09
9.933333333333332904e-01 6.634029474300308528e-09
9.949999999999999956e-01 6.589684735217115509e-09
9.966666666666665897e-01 6.545709914067291268e-09
9.983333333333334059e-01 6.502101313897288710e-09
+17 -66
View File
@@ -53,8 +53,7 @@ DEFINE INSTRUMENT ESS_reflectometer_Estia
int operationmode = 0, double over_illumination = 0.0, double theta_resolution = 0.04,
double lambda_min = 3.75, double lambda_start = 3.0, double lambda_end = 12.0,
int enable_chopper = 0, int enable_gravity=0, int enable_windows=1,
int enable_polarizer = 0, int enable_analyzer = 0,
double pol1_start=0.3, double pol1_angle=1.66, double pol2_start=0.3, double pol2_angle=1.66,
int enable_polarizer = 0, int enable_analyzer = 0,
double source_power = 2,
double selene1_foot1y =0.0, double selene1_foot2y = 0.0
)
@@ -105,20 +104,12 @@ double velocity_max ; // m/s neutron velocity of lambda_min
double analyzer_max_height = 0.01; // Maximum sample height to be covered by te polarization analyzers
double analyzer_flipper_start = 0.4; // Distance from sample to analyzer flipper
double analyzer1_start = 0.65; // Distance to sample to start the first analyzer
double analyzer1_length = 1.3; // length of first analyzer
double analyzer2_start = 0.7; // Distance to sample to start the first analyzer
double analyzer2_length = 1.6; // length of first analyzer
double Theta1_analyzer1, Theta1_analyzer2, Theta2_analyzer1, Theta2_analyzer2, dist_ana_vfocus; // quantities calculated out of values above and 1.5 degree covered divergence
int p_int;
%}
USERVARS %{
int p_int; // a flag that gets incremented if a polarizer mirror scatters
%}
INITIALIZE
@@ -127,11 +118,11 @@ INITIALIZE
velocity_max= 3.956034E3 / lambda_min; // h/m_n over lambda - ((3.9..e-7m^2/s))/(1e-10m)
chopper_phase=360.0*(chopper_pos*chopper_freq/velocity_max+(pulse_zero-opening_time)*chopper_freq);
chopper_open = 98.0;
p_int=0;
/* print out some calculated parameter for checking purposes */
printf(" Chopper phase = %.1f deg\n", chopper_phase);
//printf(" Chopper open = %.1f deg\n", chopper_open);
printf(" Chopper open = %.1f deg\n", chopper_open);
dist_ana_vfocus=analyzer_max_height/2.0/tan(1.5*PI/360.0); // the virtual focus point infront of the actual sample focus where the beams furthest out meet
@@ -144,8 +135,8 @@ Theta2_analyzer2=atan((dist_ana_vfocus+analyzer2_start+analyzer2_length)/dist_an
selene1_center=(selene1_foot1+selene1_foot2)/2.;
selene1_shift=(selene1_foot1y+selene1_foot2y)/1000.0;
selene1_rot=atan((selene1_foot2y-selene1_foot1y)/(selene1_foot2-selene1_foot1)/1000.0)*180.0/PI;
//printf(" Selene 1 rotation = %.4f deg\n", selene1_rot);
//printf(" Selene 1 shift = %.1f mm\n", selene1_shift*1e3);
printf(" Selene 1 rotation = %.4f deg\n", selene1_rot);
printf(" Selene 1 shift = %.1f mm\n", selene1_shift*1e3);
%}
TRACE
@@ -211,7 +202,7 @@ COMPONENT moderator = ESS_butterfly(
sector = "E", beamline = 2, yheight = 0.03, cold_frac = 0.9,
focus_xw = E02_01_01_Cu_in_xmax-E02_01_01_Cu_in_xmin+0.002,
focus_yh = E02_01_01_Cu_in_yheight+0.002,
target_index=3, Lmin = lambda_start, Lmax = lambda_end,
target_index=4, Lmin = lambda_start, Lmax = lambda_end,
n_pulses = 1+enable_chopper, acc_power=source_power)
AT (0, 0, 0) RELATIVE origin
@@ -243,15 +234,6 @@ COMPONENT chopper = DiskChopper(radius=chopper_diameter/2.0, yheight=0.02,
AT (0, 0, chopper_pos-2*NBOA_c) RELATIVE arm_virtual_source_beam
COMPONENT vs_divergence_h = DivPos_monitor(nb=21, ndiv=41, filename="vs_hordiv",
xmin=-0.02, xmax=0.02, ymin=-0.02, ymax=0.02, maxdiv=2.0,
restore_neutron=1)
AT (0, 0, -0.5*sample_length-0.001) RELATIVE arm_selene1
COMPONENT vs_divergence_v = DivPos_monitor(nb=21, ndiv=41, filename="vs_verdiv",
xmin=-0.02, xmax=0.02, ymin=-0.02, ymax=0.02, maxdiv=2.0,
restore_neutron=1, vertical=1)
AT (0, 0, -0.5*sample_length-0.001) RELATIVE arm_selene1
/* The actual virtual source mask, two L-shaped absorbers (first top-right) */
COMPONENT virtual_source_TR = Slit(
@@ -300,8 +282,8 @@ COMPONENT ac_slit = Slit(
* Sample area *
***************/
COMPONENT tof_sample = Monitor_nD(
filename = "tof_sample", user1=p_int,
options = "x limits=[-0.025 0.025] bins=1000 y limits=[-0.025 0.025] bins=1000 xdiv limits=[-0.75 0.75] bins=150 ydiv limits=[-2.0 2.0] bins=400 time limits=[0 0.6] bins=6000 lambda limits=[0 35] bins=3500 sy limits=[-1 1] bins=2000 user1 list all",
filename = "tof_sample",
options = "x limits=[-0.025 0.025] bins=1000 y limits=[-0.025 0.025] bins=1000 xdiv limits=[-0.75 0.75] bins=150 ydiv limits=[-2.0 2.0] bins=400 time limits=[0 0.6] bins=6000 lambda limits=[0 35] bins=3500 list all",
xwidth=0.05, yheight = 0.05)
WHEN sample==4
AT (0, 0, 0) RELATIVE arm_sample_beam
@@ -349,67 +331,36 @@ COMPONENT si_sample = Mirror(
ROTATED (0, 90, 0) RELATIVE arm_sample
/* Rotate spin 90 degrees*/
COMPONENT arm_hack = Arm()
AT (0, 0, 0) RELATIVE arm_sample
EXTEND %{
double tmp = sy;
sy = sx;
sx = -tmp;
%}
/* flipped arm detector to position analyzer correctly for beam path 1*/
COMPONENT arm_detector2 = Arm()
AT (0, 0, 0) RELATIVE arm_detector
ROTATED (0,0,180) RELATIVE arm_detector
COMPONENT arm_analyzer = Arm()
AT (0, 0, 0) RELATIVE arm_detector2
ROTATED (-selene_theta+(Theta1_analyzer1-Theta2_analyzer1)/2.0, 0, 0) RELATIVE arm_detector2
COMPONENT virtual_analyzer_flipper = Arm() // Gone -> Pol_SF_ideal(ny=1, xwidth=1, yheight=1, zdepth=0.001)
WHEN (enable_analyzer>2)
AT (0, 0, analyzer_flipper_start) RELATIVE arm_analyzer
ROTATED (0,0,0.0) RELATIVE arm_analyzer
EXTEND %{
if(INSTRUMENT_GETPAR(enable_analyzer)>2) sx *=-1;
%}
AT (0, 0, 0) RELATIVE arm_detector
ROTATED (-selene_theta+(Theta1_analyzer1-Theta2_analyzer1)/2.0, 0, 0) RELATIVE arm_detector
COMPONENT arm_analyzer2 = Arm()
AT (0, 0, 0) RELATIVE arm_detector2
ROTATED (-selene_theta+(Theta1_analyzer2-Theta2_analyzer2)/2.0, 0, 0) RELATIVE arm_detector2
AT (0, 0, 0) RELATIVE arm_detector
ROTATED (-selene_theta+(Theta1_analyzer2-Theta2_analyzer2)/2.0, 0, 0) RELATIVE arm_detector
/* polarization analyser */
COMPONENT analyzer1 = Polariser(enable_ref=1, d_substrate = 5e-4, reflect_d=0, reflect_u=0, lin=analyzer1_start, length=analyzer1_length,
COMPONENT analyzer1 = Polariser(nIncRefr=1, d_substrate = 5e-4, reflect_d=0, reflect_u=0, lin=analyzer1_start, length=analyzer1_length,
delta_theta=(Theta1_analyzer1+Theta2_analyzer1+0.05)*PI/180.0, h2=0.14, h1=0.05, abs_ref=0,
m_u=5.5, m_d=0.45, both_coated=0, alpha=2.3, W = 0.0014)
WHEN enable_analyzer
AT (0, 0.0, analyzer1_start) RELATIVE arm_analyzer
ROTATED (0,0,0.0) RELATIVE arm_analyzer
COMPONENT analyzer2 = Polariser(enable_ref=1, d_substrate = 5e-4, reflect_d=0, reflect_u=0, lin=analyzer2_start, length=analyzer2_length,
COMPONENT analyzer2 = Polariser(nIncRefr=1, d_substrate = 5e-4, reflect_d=0, reflect_u=0, lin=analyzer2_start, length=analyzer2_length,
delta_theta=(Theta1_analyzer2+Theta2_analyzer2+0.05)*PI/180.0, h2=0.2, h1=0.05, abs_out=0,
m_u=5.0, m_d=0.65, both_coated=1, alpha=2.3, W = 0.0014)
WHEN enable_analyzer==2
AT (0, 0.0, analyzer2_start) RELATIVE arm_analyzer2
ROTATED (0,0,0.0) RELATIVE arm_analyzer2
AT (0, 0.0, analyzer2_start) RELATIVE arm_analyzer
ROTATED (0,0,0.0) RELATIVE arm_analyzer
/* detector */
COMPONENT tof_detector = Monitor_nD(
filename = "tof_detector",
options = "x limits=[-0.25 0.25] bins=1000 y limits=[-0.5 0.5] bins=1000 time limits=[0 0.6] bins=6000 lambda limits=[0 35] bins=3500 sx sy sz user1, list all",
options = "x limits=[-0.25 0.25] bins=1000 y limits=[-0.5 0.5] bins=1000 time limits=[0 0.6] bins=6000 lambda limits=[0 35] bins=3500 sx limits=[-1 1] bins=1000 sy limits=[-1 1] bins=1000, list all",
xwidth = 0.5, yheight = 1.0)
WHEN sample!=4
AT (0, 0, detector_arm+0.00001) RELATIVE arm_detector
ROTATED (0, 0, 0) RELATIVE arm_detector
/***********************************************************************/
+17 -17
View File
@@ -144,7 +144,7 @@ COMPONENT NBOA_window=Al_window(thickness=NBOA_Al_entrance_length)
AT (0,0,NBOA_Al_entrance_start) RELATIVE ISCS
COMPONENT NBOA_side = Absorber(xmin=NBOA_side_x, xmax=NBOA_side_x+0.012,
COMPONENT NBOA_side = AbsorberFixed(xmin=NBOA_side_x, xmax=NBOA_side_x+0.012,
ymin=-0.2, ymax=0.2,
zmin=0.0, zmax=E02_01_01_Cu_length+E02_01_01_length+E02_01_02_length+E02_01_03_length)
AT (0, 0, E02_01_01_Cu_start) RELATIVE ISCS
@@ -181,7 +181,7 @@ COMPONENT NBOA_Cu_collimator=Guide_gravity(
* feeder neutron guide *
************************/
COMPONENT E02_01_011_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_011_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_011_wh/2.0, ymax=E02_01_011_wh/2.0,
zmin=0.0, zmax=E02_01_01_length-0.5)
AT (0, 0, E02_01_01_start) RELATIVE ISCS
@@ -190,7 +190,7 @@ COMPONENT E02_01_011_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_01_012_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_012_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_012_wh/2.0, ymax=E02_01_012_wh/2.0,
zmin=0.5-E02_01_01_Cu_length, zmax=E02_01_01_length)
AT (0, 0, E02_01_01_start) RELATIVE ISCS
@@ -210,7 +210,7 @@ COMPONENT E02_01_01 = Elliptic_guide_gravity(
enableGravity=enable_gravity)
AT (0, 0, E02_01_01_start) RELATIVE ISCS
COMPONENT E02_01_021_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_021_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_021_wh/2.0, ymax=E02_01_021_wh/2.0,
zmin=0.0, zmax=E02_01_02_length/2.0)
AT (0, 0, E02_01_02_start) RELATIVE ISCS
@@ -219,7 +219,7 @@ COMPONENT E02_01_021_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_01_022_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_022_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_022_wh/2.0, ymax=E02_01_022_wh/2.0,
zmin=E02_01_02_length/2.0, zmax=E02_01_02_length)
AT (0, 0, E02_01_02_start) RELATIVE ISCS
@@ -238,7 +238,7 @@ COMPONENT E02_01_02 = Elliptic_guide_gravity(
enableGravity=enable_gravity)
AT (0, 0, E02_01_02_start) RELATIVE ISCS
COMPONENT E02_01_031_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_031_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_031_wh/2.0, ymax=E02_01_031_wh/2.0,
zmin=0.0, zmax=0.5)
AT (0, 0, E02_01_03_start) RELATIVE ISCS
@@ -247,7 +247,7 @@ COMPONENT E02_01_031_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_01_032_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_032_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_032_wh/2.0, ymax=E02_01_032_wh/2.0,
zmin=0.5, zmax=1.0)
AT (0, 0, E02_01_03_start) RELATIVE ISCS
@@ -256,7 +256,7 @@ COMPONENT E02_01_032_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_01_033_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_01_033_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_01_033_wh/2.0, ymax=E02_01_033_wh/2.0,
zmin=1.0, zmax=E02_01_03_length)
AT (0, 0, E02_01_03_start) RELATIVE ISCS
@@ -299,7 +299,7 @@ COMPONENT NFGA_Al_window_in=Al_window(
WHEN enable_windows
AT (0,0,NFGA_Al_start) RELATIVE ISCS
COMPONENT NFGA_side1 = Absorber(xmin=NFGA_side_x1, xmax=NFGA_side_x1+0.008,
COMPONENT NFGA_side1 = AbsorberFixed(xmin=NFGA_side_x1, xmax=NFGA_side_x1+0.008,
ymin=-0.2, ymax=0.2,
zmin=0.002, zmax=0.502)
AT (0, 0, E02_02_01_start-0.002) RELATIVE ISCS
@@ -309,7 +309,7 @@ COMPONENT NFGA_side1 = Absorber(xmin=NFGA_side_x1, xmax=NFGA_side_x1+0.008,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT NFGA_side2 = Absorber(xmin=NFGA_side_x2, xmax=NFGA_side_x2+0.008,
COMPONENT NFGA_side2 = AbsorberFixed(xmin=NFGA_side_x2, xmax=NFGA_side_x2+0.008,
ymin=-0.2, ymax=0.2,
zmin=0.502, zmax=E02_02_01_length+E02_02_02_length+E02_02_03_length+0.002)
AT (0, 0, E02_02_01_start-0.002) RELATIVE ISCS
@@ -321,7 +321,7 @@ COMPONENT NFGA_side2 = Absorber(xmin=NFGA_side_x2, xmax=NFGA_side_x2+0.008,
%}
// in-bunker feeder segments
COMPONENT E02_02_011_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_011_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_011_wh/2.0, ymax=E02_02_011_wh/2.0,
zmin=0.0, zmax=E02_02_01_length/2.0)
AT (0, 0, E02_02_01_start) RELATIVE ISCS
@@ -330,7 +330,7 @@ COMPONENT E02_02_011_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_02_012_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_012_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_012_wh/2.0, ymax=E02_02_012_wh/2.0,
zmin=E02_02_01_length/2.0, zmax=E02_02_01_length)
AT (0, 0, E02_02_01_start) RELATIVE ISCS
@@ -349,7 +349,7 @@ COMPONENT E02_02_01 = Elliptic_guide_gravity(
enableGravity=enable_gravity)
AT (0, 0, E02_02_01_start) RELATIVE ISCS
COMPONENT E02_02_021_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_021_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_021_wh/2.0, ymax=E02_02_021_wh/2.0,
zmin=0.0, zmax=E02_02_02_length/2.0)
AT (0, 0, E02_02_02_start) RELATIVE ISCS
@@ -358,7 +358,7 @@ COMPONENT E02_02_021_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_02_022_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_022_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_022_wh/2.0, ymax=E02_02_022_wh/2.0,
zmin=E02_02_02_length/2.0, zmax=E02_02_02_length)
AT (0, 0, E02_02_02_start) RELATIVE ISCS
@@ -377,7 +377,7 @@ COMPONENT E02_02_02 = Elliptic_guide_gravity(
enableGravity=enable_gravity)
AT (0, 0, E02_02_02_start) RELATIVE ISCS
COMPONENT E02_02_031_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_031_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_031_wh/2.0, ymax=E02_02_031_wh/2.0,
zmin=0.0, zmax=0.5)
AT (0, 0, E02_02_03_start) RELATIVE ISCS
@@ -386,7 +386,7 @@ COMPONENT E02_02_031_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_02_032_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_032_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_032_wh/2.0, ymax=E02_02_032_wh/2.0,
zmin=0.5, zmax=1.0)
AT (0, 0, E02_02_03_start) RELATIVE ISCS
@@ -395,7 +395,7 @@ COMPONENT E02_02_032_wedge = Absorber(xmin=-0.1, xmax=0.0,
ALLOW_BACKPROP;
PROP_Z0;
%}
COMPONENT E02_02_033_wedge = Absorber(xmin=-0.1, xmax=0.0,
COMPONENT E02_02_033_wedge = AbsorberFixed(xmin=-0.1, xmax=0.0,
ymin=-E02_02_033_wh/2.0, ymax=E02_02_033_wh/2.0,
zmin=1.0, zmax=E02_02_03_length)
AT (0, 0, E02_02_03_start) RELATIVE ISCS
+391
View File
@@ -0,0 +1,391 @@
/*******************************************************************************
* McStas instrument definition URL=http://www.mcstas.org
*
* Instrument: ESS_reflectometer_Estia
*
* %Identification
* Written by: Artur Glavic (artur.glavic@psi.ch); Jochen Stahn (jochen.stahn@psi.ch); Christine Klauser (christine.klauser@psi.ch)
* Date: 01. 03. 2018
* Origin: PSI
* Release: McStas 2.4.1
* Version: 1.0
* %INSTRUMENT_SITE: ESS (E02)
*
* Estia is a vertical sample, focusing reflectometer for small sample
*
* %Description
* The instrument consists of a two part elliptical feeder that focuses onto
* a slit mask that defines the sample footprint, called virtual source.
* The virtual source is imaged on the sample position with a Selene
* type neutron guide (two ellipses).
* This version of the instrument, used in the ESS butterfly moderator,
* has two vertical Selene guide systems that share the same focal points.
* The two guides are only implemented in the feeder as the selene mirrors
* are part of the upgrade program.
*
* %Parameters
* omegaa: [deg] incident angle selected by slit
* sample: flag to switch between (0) sample D2O surface
* (1) reference ( R(q_z) = 1 for all q_z )
* (2) Ni-film on silicon
* (3) Natural SiO2 on silicon
* (4) monitor instead of sample (normal to beam)
* sample_length: [m] Size of sample in beam direction
* sample_width: [m] Size of sample in perpendicular to beam
*
* over_illumination: [m] Extra opening of virtual source compared to sample size
* theta_resolution: Delta theta / theta
*
* lambda_start: [A] Beginning of simulated wavelength range
* lambda_end: [A] End of simulated wavelength range
* reflector: [0/1/2] Direct beam on sample or moved down to use reflector 1 or 2 setup
* enable_gravity: [0/1] Use gravity in elliptical guide model.
* enable_chopper: [0/1/2/3] Activate chopper component if !=0. Numbers larger than
* 1 define the number of pulses per chopper opening.
* (pulses skipped=enable_chopper-1)
*
* %End
*******************************************************************************/
DEFINE INSTRUMENT ESS_reflectometer_Estia
(int sample = 0, double sample_length = 0.25, double sample_width = 0.1,
double omegaa = 0.0, double theta_resolution = 0.04, int reflector = 0,
double lambda_min = 3.75, double lambda_start = 3.0, double lambda_end = 12.0,
int enable_chopper = 0, int enable_gravity=0, int enable_windows=1,
double source_power = 2)
DECLARE
%{
/* Geometrical parameters from CAD model of Estia (ESS-0050413)
* TCS coordinate and directional rotation first focus point
* refered to as focus_moderator_y_rot
*/
//TCS position of ISCS: (110,-105,137)
double iscs_x=0.0199717;
double iscs_y=0.0;
double iscs_z=0.0547095; // ISCS in McStas coordinates using mod-view-opt.instr
double iscs_rot_y=0.4; // ISCS is at TCS-35.6 degree, McStas at -36 degree
double iscs_rot_x=0.7; // downward tilt of Estia axis
double selene1_foot1y =0.0;
double selene1_foot2y = 0.0;
// Selene 1 geometry parameters (optics parameters in Estia_selene1.instr)
double selene1_foot1 = 4.20; // distance of first foot to VS focus
double selene1_foot2 = 7.00; // distance of second foot to VS focus
double selene1_center;
double selene1_shift;
double selene1_rot;
// Selene 2
/* general instrument geometry parameters */
double total_length = 35.0 ; // m distance moderator-sample (2*c_feeder+4*c_Selene)
double detector_arm = 4.0 ; // m distance sample-detector
/* chopper parameters */
double chopper_diameter = 0.7;
double chopper_pos = 10.895; // m distance source-chopper
double chopper_phase ; // deg phase between pulse and chopper opening
double chopper_open ; // deg of opening angle in the chopper
double pulse_zero = 0.00175; // ms intensity weighted average time of emitted neutron pulse
double opening_time = 0.0015; // ms time to reach full intensity on detector, used to adjust phase to get full intensity at beginning of selected band
double chopper_freq = 14.0 ; // Hz chopper frequency
double slit_distance = 1.775; //m, distance slit to sample
/* derived quantities */
double selene_theta = 1.25;
double velocity_max ; // m/s neutron velocity of lambda_min
double analyzer_max_height = 0.01; // Maximum sample height to be covered by te polarization analyzers
double analyzer1_start = 0.65; // Distance to sample to start the first analyzer
double analyzer1_length = 1.3; // length of first analyzer
double analyzer2_start = 0.7; // Distance to sample to start the first analyzer
double analyzer2_length = 1.6; // length of first analyzer
double Theta1_analyzer1, Theta1_analyzer2, Theta2_analyzer1, Theta2_analyzer2, dist_ana_vfocus; // quantities calculated out of values above and 1.5 degree covered divergence
%}
INITIALIZE
%{
// chopper coupling together
velocity_max= 3.956034E3 / lambda_min; // h/m_n over lambda - ((3.9..e-7m^2/s))/(1e-10m)
chopper_phase=360.0*(chopper_pos*chopper_freq/velocity_max+(pulse_zero-opening_time)*chopper_freq);
chopper_open = 98.0;
/* print out some calculated parameter for checking purposes */
printf(" Chopper phase = %.1f deg\n", chopper_phase);
printf(" Chopper open = %.1f deg\n", chopper_open);
dist_ana_vfocus=analyzer_max_height/2.0/tan(1.5*PI/360.0); // the virtual focus point infront of the actual sample focus where the beams furthest out meet
Theta1_analyzer1=atan((dist_ana_vfocus+analyzer1_start)/dist_ana_vfocus*analyzer_max_height/2.0/analyzer1_start)*180.0/PI;
Theta2_analyzer1=atan((dist_ana_vfocus+analyzer1_start+analyzer1_length)/dist_ana_vfocus*analyzer_max_height/2.0/(analyzer1_start+analyzer1_length))*180.0/PI;
Theta1_analyzer2=atan((dist_ana_vfocus+analyzer2_start)/dist_ana_vfocus*analyzer_max_height/2.0/analyzer2_start)*180.0/PI;
Theta2_analyzer2=atan((dist_ana_vfocus+analyzer2_start+analyzer2_length)/dist_ana_vfocus*analyzer_max_height/2.0/(analyzer2_start+analyzer2_length))*180.0/PI;
selene1_center=(selene1_foot1+selene1_foot2)/2.;
selene1_shift=(selene1_foot1y+selene1_foot2y)/1000.0;
selene1_rot=atan((selene1_foot2y-selene1_foot1y)/(selene1_foot2-selene1_foot1)/1000.0)*180.0/PI;
printf(" Selene 1 rotation = %.4f deg\n", selene1_rot);
printf(" Selene 1 shift = %.1f mm\n", selene1_shift*1e3);
%}
TRACE
/********************************************************************************
* Initial geometry coordinate axes for important components of the simulation. *
********************************************************************************/
COMPONENT origin = Progress_bar()
AT (0,0,0) ABSOLUTE
/* The ISCS is the instrument coordinate system with directions where y points upwards and z lies on the instrument axes. */
COMPONENT ISCS_rot1 = Arm() // position correctly and rotate around z-axis (x points in beam direction)
AT (iscs_x,iscs_y,iscs_z) RELATIVE origin
ROTATED (0,iscs_rot_y,0) RELATIVE origin
COMPONENT ISCS = Arm() // rotate around y-axis (slight downward tilt)
AT (0,0,0) RELATIVE ISCS_rot1
ROTATED (iscs_rot_x,0,0) RELATIVE ISCS_rot1
/***********************
* Instrument Skeleton *
***********************/
// Axes system parallel to the c-axis of the feeder
COMPONENT arm_feeder = Arm()
AT (0, 0, 0) RELATIVE ISCS
ROTATED (0, 0, 0) RELATIVE ISCS
COMPONENT arm_selene1_center = Arm()
AT (selene1_shift, 0, 2*NBOA_c+selene1_center) RELATIVE ISCS
ROTATED (0, selene1_rot, 0) RELATIVE ISCS
// Axes starting at focus of feeder parallel to c-axis of Selene guides
COMPONENT arm_selene1 = Arm()
AT (0, 0, -selene1_center) RELATIVE arm_selene1_center
COMPONENT arm_selene2 = Arm()
AT (0, 0, 2*NBOA_c+2*selene_c) RELATIVE ISCS
ROTATED (0, 0, 0) RELATIVE ISCS
// Axes of the center of usable beam passing through the virtual source
COMPONENT arm_virtual_source_beam = Arm()
AT (0, 0, 0) RELATIVE arm_selene1
ROTATED (0, selene_theta, 0) RELATIVE ISCS
// Axes used for the virtual source masks, this depends on the sample angle to achieve the correct footprint
COMPONENT arm_virtual_source = Arm()
AT (0, 0, 0) RELATIVE arm_virtual_source_beam
ROTATED (0, 10.0, 0) RELATIVE arm_virtual_source_beam
// Sample position with Axes pointing to the center of the beam
COMPONENT arm_sample_beam = Arm()
AT (0, 0, 4.0*selene_c) RELATIVE arm_selene1
ROTATED (0, selene_theta, 0) RELATIVE ISCS
// Sample position with sample angle rotation
COMPONENT arm_addon1_beam = Arm()
AT (0, 0, 0) RELATIVE arm_sample_beam
ROTATED (omegaa-iscs_rot_x, 0, 0) RELATIVE arm_sample_beam
COMPONENT arm_addon1 = Arm()
AT (0, 0, -0.2) RELATIVE arm_addon1_beam
COMPONENT arm_addon2_beam = Arm()
AT (0, 0, 0) RELATIVE arm_sample_beam
ROTATED (-omegaa-iscs_rot_x, 0, 0) RELATIVE arm_sample_beam
COMPONENT arm_addon2 = Arm()
AT (0, 0, 0.2) RELATIVE arm_addon2_beam
// Sample position with sample angle rotation
COMPONENT arm_sample = Arm()
AT (0, -0.2*((reflector==1)*0.024439474+(reflector==2)*0.062914667), 0) RELATIVE arm_sample_beam
ROTATED (0, 0, 0) RELATIVE arm_sample_beam
// Detector arm rotation at sample position
COMPONENT arm_detector = Arm()
AT (0, 0, 0) RELATIVE arm_sample_beam
ROTATED (0, 0, 0) RELATIVE arm_sample_beam
/**********
* Source *
**********/
COMPONENT moderator = ESS_butterfly(
sector = "E", beamline = 2, yheight = 0.03, cold_frac = 0.9,
focus_xw = E02_01_01_Cu_in_xmax-E02_01_01_Cu_in_xmin+0.002,
focus_yh = E02_01_01_Cu_in_yheight+0.002,
target_index=4, Lmin = lambda_start, Lmax = lambda_end,
n_pulses = 1+enable_chopper, acc_power=source_power)
AT (0, 0, 0) RELATIVE origin
/***************************************
* Geometry of neutron feeder separate *
***************************************/
%include "Estia_feeder.instr"
/****************************************************
* Beam manipulation area around the virtual source *
****************************************************/
/* Absorber to reduce beam to needed size an for shielding purposes (CPC1 in CAD model) */
COMPONENT CPC1_in = Slit(xwidth=0.0303, yheight=0.0792)
AT (0, 0, -0.890) RELATIVE arm_virtual_source_beam
COMPONENT CPC1_monitor = Slit(xwidth=0.016344, yheight=0.05547)
AT (0, 0, -0.3573) RELATIVE arm_virtual_source_beam
COMPONENT CPC1_out = Slit(xwidth=0.013, yheight=0.038)
AT (0, 0, -0.220) RELATIVE arm_virtual_source_beam
/* bandwidth definition chopper */
COMPONENT chopper = DiskChopper(radius=chopper_diameter/2.0, yheight=0.02,
theta_0=chopper_open, phase=chopper_phase+chopper_open/2.0,
nu=chopper_freq, nslit=1)
WHEN enable_chopper==1
AT (0, 0, chopper_pos-2*NBOA_c) RELATIVE arm_virtual_source_beam
/* The actual virtual source mask, two L-shaped absorbers (first top-right) */
COMPONENT virtual_source_TR = Slit(
xmin = 0.0, xmax = 1.0, ymin = -1.0, ymax = 0.006)
WHEN sample!=4
AT (0, 0, -0.015) RELATIVE arm_virtual_source
//
/* The actual virtual source mask, two L-shaped absorbers (second bottom-left) */
COMPONENT virtual_source_BL = Slit(
xmin = -1.0, xmax = 0.0, ymin = -0.006, ymax = 1.0)
WHEN sample!=4
AT (0, 0, 0.015) RELATIVE arm_virtual_source
/*************************************
* Geometry of Selene guide separate *
*************************************/
%include "Estia_selene1.instr"
%include "Estia_selene2.instr"
/**********************************
* Optical components within cave *
**********************************/
COMPONENT ac_slit = Slit(
xwidth = 0.2,
ymin = slit_distance*tan((PI/180.0)*(omegaa*(1.0-theta_resolution/2.0)-iscs_rot_x)),
ymax = slit_distance*tan((PI/180.0)*(omegaa*(1.0+theta_resolution/2.0)-iscs_rot_x)))
AT (0, 0, -slit_distance) RELATIVE arm_sample_beam
/**************************************************
* Reflector to increase incident angle on sample *
* ************************************************/
COMPONENT addon_slit = Slit(
xwidth = 0.2, yheight=0.0009*(reflector!=2)+0.0023*(reflector==2))
AT (0, 0, -0.0376) RELATIVE arm_addon1
COMPONENT addon_11 = Mirror(
xwidth = sample_width, yheight = 0.075,
m = 2, center = 1, transmit = 0
)
WHEN reflector==1
AT (0, 0, 0) RELATIVE arm_addon1
ROTATED (-89.3, 0, 0) RELATIVE arm_addon1
COMPONENT addon_12 = Mirror(
xwidth = sample_width, yheight = 0.075,
m = 5, center = 1, transmit = 0
)
WHEN reflector==2
AT (0, 0, 0) RELATIVE arm_addon1
ROTATED (-88.2, 0, 0) RELATIVE arm_addon1
/***************
* Sample area *
***************/
COMPONENT tof_sample = Monitor_nD(
filename = "tof_sample",
options = "x limits=[-0.025 0.025] bins=1000 y limits=[-0.025 0.025] bins=1000 xdiv limits=[-0.75 0.75] bins=150 ydiv limits=[-2.0 2.0] bins=400 time limits=[0 0.6] bins=6000 lambda limits=[0 35] bins=3500 list all",
xwidth=0.05, yheight = 0.05)
WHEN sample==4
AT (0, 0, 0) RELATIVE arm_sample_beam
ROTATED (0, 0, 0) RELATIVE arm_sample_beam
/* NiTi multilayer sample */
COMPONENT sample = Mirror(
xwidth = sample_width, yheight = sample_length,
center = 1, transmit = 0,
reflect = "D2O.ref"
)
WHEN sample==0
AT (0, 0, 0) RELATIVE arm_sample
ROTATED (90-iscs_rot_x, 0, 0) RELATIVE arm_sample
/* ideal reflector as reference */
COMPONENT reference_sample = Mirror(
xwidth = sample_width, yheight = sample_length,
center = 1, transmit = 0,
R0 = 0.999, alpha = 0.001, m = 50, center = 1, transmit = 0
)
WHEN sample==1
AT (0, 0, 0) RELATIVE arm_sample
ROTATED (90-iscs_rot_x, 0, 0) RELATIVE arm_sample
/* Nickel film on silicon */
COMPONENT ni_sample = Mirror(
xwidth = sample_width, yheight = sample_length,
center = 1, transmit = 0,
reflect = "Si-Ni.ref"
)
WHEN sample==2
AT (0, 0, 0) RELATIVE arm_sample
ROTATED (90-iscs_rot_x, 0, 0) RELATIVE arm_sample
/* Silicon with natural oxide */
COMPONENT si_sample = Mirror(
xwidth = sample_width, yheight = sample_length,
center = 1, transmit = 0,
reflect = "Si-SiO2.ref"
)
WHEN sample==3
AT (0, 0, 0) RELATIVE arm_sample
ROTATED (90-iscs_rot_x, 0, 0) RELATIVE arm_sample
/**************************************************
* Reflector to increase incident angle on sample *
* ************************************************/
COMPONENT addon_21 = Mirror(
xwidth = sample_width, yheight = 0.075,
m = 2, center = 1, transmit = 0
)
WHEN reflector==1
AT (0, 0, 0) RELATIVE arm_addon2
ROTATED (89.3, 0, 0) RELATIVE arm_addon2
COMPONENT addon_22 = Mirror(
xwidth = sample_width, yheight = 0.075,
m = 5, center = 1, transmit = 0
)
WHEN reflector==2
AT (0, 0, 0) RELATIVE arm_addon2
ROTATED (88.2, 0, 0) RELATIVE arm_addon2
/* detector */
COMPONENT tof_detector = Monitor_nD(
filename = "tof_detector",
options = "x limits=[-0.25 0.25] bins=1000 y limits=[-0.5 0.5] bins=1000 time limits=[0 0.6] bins=6000 lambda limits=[0 35] bins=3500 sx limits=[-1 1] bins=1000 sy limits=[-1 1] bins=1000, list all",
xwidth = 0.5, yheight = 1.0)
WHEN sample!=4
AT (0, 0, detector_arm+0.00001) RELATIVE arm_detector
/***********************************************************************/
FINALLY
%{
%}
END
+21 -167
View File
@@ -28,80 +28,20 @@ DEFINE INSTRUMENT Estia_selene(int enable_gravity=0)
DECLARE
%{
// Polarizer parameters used for the detailed design
double pol1_xstart = 1.007; // [m] up-stream of focus point
double pol1_ystart = 0.0064; // [m] (relative to c-axis)
double pol1_xend = 0.365; // [m] up-stream of focus point
double pol1_yend = 0.013; // [m]
double pol1_gamma = 1.65; // [deg] optimal incident angle for beams passing through focus point
double pol1_m = 5.08;
double pol1_lin_xstart = 1.007; //[m]
double pol1_lin_ystart = 0.0064; //[m]
double pol1_lin_xend = 0.812; //[m]
double pol1_lin_yend = -0.0014; //[m]
double pol1_lin_m = 5.5;
double pol2_xstart = 1.286; // [m] up-stream of focus point
double pol2_ystart = 0.009; // [m] (relative to c-axis)
double pol2_xend = 0.500; // [m] up-stream of focus point
double pol2_yend = 0.0175; // [m]
double pol2_gamma = 1.70; // [deg] optimal incident angle for beams passing through focus point
double pol2_m = 5.08;
double pol2_lin_xstart = 1.286; //[m]
double pol2_lin_ystart = 0.009; //[m]
double pol2_lin_xend = 1.093; //[m]
double pol2_lin_yend = 0.0014; //[m]
double pol2_lin_m = 5.08;
double pol_hclose = 0.12; // [m] height of entrance
double pol_hfar = 0.12; // [m] height of exit
// parameters for polarizer component calculated from the above
double pol1_length, pol2_length, pol1_lin_length, pol2_lin_length;
double Theta_pol1, Theta_pol2, Theta_rot1, Theta_rot2;
double Theta1_pol1, Theta1_pol2, Theta2_pol1, Theta2_pol2;
double pol1_lin_rot, pol2_lin_rot;
double polarizer_max_width = 0.0015; // Maximum sample height to be covered by te polarization analyzers
double polarizer_start = 0.3; // Distance to sample to start the first analyzer
double polarizer_length = 0.6; // length of first analyzer
double Theta1_polarizer, Theta2_polarizer, dist_pol_vfocus; // quantities calculated out of values above and 1.5 degree covered divergence
%}
INITIALIZE
%{
dist_pol_vfocus=polarizer_max_width/2.0/tan(1.5*PI/360.0); // the virtual focus point infront of the actual sample focus where the beams furthest out meet
pol1_length = pol1_xstart-pol1_xend;
pol2_length = pol2_xstart-pol2_xend;
pol1_lin_length = pol1_lin_xstart-pol1_lin_xend;
pol2_lin_length = pol2_lin_xstart-pol2_lin_xend;
Theta1_pol1=atan2(pol1_ystart, pol1_xstart); // [rad] angle between c-axis and entrance point
Theta2_pol1=atan2(pol1_yend, pol1_xend); // [rad] angle between c-axis and exit point
Theta1_pol2=atan2(pol2_ystart, pol2_xstart); // [rad] angle between c-axis and entrance point
Theta2_pol2=atan2(pol2_yend, pol2_xend); // [rad] angle between c-axis and exit point
Theta_pol1=(Theta2_pol1-Theta1_pol1)*180.0/PI; // [deg] full covered divergence angle
Theta_pol2=(Theta2_pol2-Theta1_pol2)*180.0/PI; // [deg]
Theta_rot1=(Theta1_pol1+Theta2_pol1)/2.0*180.0/PI; // [deg] rotation of center of polarizer
Theta_rot2=(Theta1_pol2+Theta2_pol2)/2.0*180.0/PI; // [deg]
pol1_lin_rot=atan2(pol1_lin_ystart-pol1_lin_yend,
pol1_lin_xstart-pol1_lin_xend)*180.0/PI; // [deg] rotation angle of polarizer
pol2_lin_rot=atan2(pol2_lin_ystart-pol2_lin_yend,
pol2_lin_xstart-pol2_lin_xend)*180.0/PI; // [deg] rotation angle of polarizer
printf(" Polarizer 1 angle = %.2f deg\n", Theta_rot1);
printf(" Polarizer 1 divergence = %.2f deg\n", Theta_pol1);
printf(" Polarizer 1 distance = %.1f mm\n", pol1_xstart*1000.0);
printf(" Polarizer 1 length = %.1f mm\n", pol1_length*1000.0);
printf(" PolStraight 1 angle = %.2f deg\n", pol1_lin_rot);
printf(" Polarizer 2 angle = %.2f deg\n", Theta_rot1);
printf(" Polarizer 2 divergence = %.2f deg\n", Theta_pol2);
printf(" Polarizer 2 distance = %.1f mm\n", pol2_xstart*1000.0);
printf(" Polarizer 2 length = %.1f mm\n", pol2_length*1000.0);
printf(" PolStraight 2 angle = %.2f deg\n", pol2_lin_rot);
Theta1_polarizer=atan((dist_pol_vfocus+polarizer_start)/dist_pol_vfocus*polarizer_max_width/2.0/polarizer_start)*180.0/PI;
Theta2_polarizer=atan((dist_pol_vfocus+polarizer_start+polarizer_length)/dist_pol_vfocus*polarizer_max_width/2.0/(polarizer_start+polarizer_length))*180.0/PI;
%}
TRACE
@@ -127,112 +67,26 @@ REMOVABLE COMPONENT source = Moderator(radius = 0.001, focus_xw = selene_entry+0
/**************************************
* Middle focus between Selene guides *
**************************************/
COMPONENT arm_polref = Arm()
COMPONENT arm_polarizer = Arm()
AT (0, 0, 2*selene_c) RELATIVE arm_selene1
ROTATED (selene_theta, -selene_theta, 0) RELATIVE ISCS
COMPONENT arm_polarizer = Arm()
AT (0, 0, 2*selene_c) RELATIVE arm_selene1
ROTATED (0, 0, 0) RELATIVE arm_selene1
COMPONENT arm_pol1 = Arm()
AT (0, 0, 0) RELATIVE arm_polarizer
ROTATED (0, -Theta_rot1, 0) RELATIVE arm_polarizer
COMPONENT arm_pol2 = Arm()
AT (0, 0, 0) RELATIVE arm_polarizer
ROTATED (0, -Theta_rot2, 0) RELATIVE arm_polarizer
COMPONENT polarizer1 = Polariser(nIncRefr=1, d_substrate = 5e-4, reflect_d=0, reflect_u=0, lin=-(polarizer_start+polarizer_length), length=polarizer_length,
delta_theta=(Theta1_polarizer+Theta2_polarizer)*PI/180.0, h2=0.1, h1=0.05, abs_ref=1, m_u=4.0, m_d=0.65, both_coated=1, alpha=2.3, W = 0.0014)
WHEN enable_polarizer
AT (0, 0, -(polarizer_start+polarizer_length)) RELATIVE arm_polarizer
ROTATED (0,0,90.0) RELATIVE arm_polarizer
COMPONENT polarizer2_lin = Pol_mirror(zwidth = pol2_lin_length, yheight = pol_hfar, p_reflect=0,
rUpData="SNAG_m5p5_Tup.ref", rDownData="SNAG_m5p5_Tdown.ref")
WHEN (enable_polarizer>0)
AT ((pol2_lin_ystart+pol2_lin_yend)/2.0, 0, -(pol2_lin_xstart+pol2_lin_xend)/2.0) RELATIVE arm_polarizer
ROTATED (0,-pol2_lin_rot,0.0) RELATIVE arm_polarizer
GROUP polarizer2_set
EXTEND
%{
if (SCATTERED==2) {
p_int +=2;
}
%}
COMPONENT polarizer2 = Polariser(lin=-pol2_xstart, length=pol2_length,
enable_ref=1, abs_ref=1, abs_out=1, both_coated=1,
d_substrate = 5e-4, T_loss=4.0e3,
m_u=pol2_m, m_d=0.6, m_residual=0.55,
alpha=2.3, W = 0.0014, reflect_d=0, reflect_u=0,
delta_theta=Theta_pol2*PI/180.0,
h2=pol_hfar, h1=pol_hclose)
WHEN (enable_polarizer>0)
AT (0, 0, -pol2_xstart) RELATIVE arm_pol2
ROTATED (0,0,90.0) RELATIVE arm_pol2
GROUP polarizer2_set
EXTEND
%{
if (SCATTERED) {
ALLOW_BACKPROP;
PROP_Z0;
p_int +=1;
} else ABSORB;
%}
COMPONENT replacement_pol2_set = Slit(xwidth=0.2, yheight=0.2)
WHEN (enable_polarizer==0)
AT (0, 0, -0.2) RELATIVE arm_polarizer
GROUP polarizer2_set
COMPONENT polarizer1_lin = Pol_mirror(zwidth = pol1_lin_length, yheight = pol_hfar, p_reflect=0,
rUpData="SNAG_m5p5_Tup.ref", rDownData="SNAG_m5p5_Tdown.ref")
WHEN (enable_polarizer>0)
AT ((pol1_lin_ystart+pol1_lin_yend)/2.0, 0, -(pol1_lin_xstart+pol1_lin_xend)/2.0) RELATIVE arm_polarizer
ROTATED (0,-pol1_lin_rot,0.0) RELATIVE arm_polarizer
GROUP polarizer1_set
EXTEND
%{
if (SCATTERED==2) {
p_int +=8;
}
%}
COMPONENT polarizer1 = Polariser(lin=-pol1_xstart, length=pol1_length,
enable_ref=1, abs_ref=1, abs_out=1, both_coated=1,
d_substrate = 5e-4, T_loss=4.0e3,
m_u=pol1_m, m_d=0.6, m_residual=0.55,
alpha=2.3, W = 0.0014, reflect_d=0, reflect_u=0,
delta_theta=Theta_pol1*PI/180.0,
h2=pol_hfar, h1=pol_hclose)
WHEN (enable_polarizer>0)
AT (0, 0, -pol1_xstart) RELATIVE arm_pol1
ROTATED (0,0,90.0) RELATIVE arm_pol1
GROUP polarizer1_set
EXTEND
%{
if (SCATTERED) {
p_int +=4;
}
%}
COMPONENT replacement_pol1_set = Slit(xwidth=0.2, yheight=0.2)
WHEN (enable_polarizer==0)
AT (0, 0, -0.1) RELATIVE arm_polarizer
GROUP polarizer1_set
/* The proximal polariser comes next */
COMPONENT polarizer2 = Polariser(nIncRefr=1, d_substrate = 5e-4, reflect_d=0, reflect_u=0, lin=polarizer_start, length=polarizer_length,
delta_theta=(Theta1_polarizer+Theta2_polarizer)*PI/180.0, h2=0.1, h1=0.05, abs_ref=1, m_u=4.0, m_d=0.65, both_coated=1, alpha=2.3, W = 0.0014)
WHEN (enable_polarizer>1)
AT (0, 0, polarizer_start) RELATIVE arm_polarizer
ROTATED (0.0,0,90.0) RELATIVE arm_polarizer
COMPONENT mf_divergence_h = DivPos_monitor(nb=21, ndiv=41, filename="mf_hordiv",
xmin=-0.02, xmax=0.02, ymin=-0.02, ymax=0.02, maxdiv=2.0)
AT (0, 0, 0) RELATIVE arm_polarizer
COMPONENT mf_divergence_v = DivPos_monitor(nb=21, ndiv=41, filename="mf_verdiv",
xmin=-0.02, xmax=0.02, ymin=-0.02, ymax=0.02, maxdiv=2.0, vertical=1)
AT (0, 0, 0) RELATIVE arm_polarizer
COMPONENT virtual_flipper = Pol_SF_ideal(ny=1, xwidth=0.1, yheight=0.1, zdepth=0.001)
WHEN (enable_polarizer>2)
AT (0, 0, 0) RELATIVE arm_polarizer
FINALLY
+515 -697
View File
File diff suppressed because it is too large Load Diff
-58
View File
@@ -1,58 +0,0 @@
4.37173E-05 0.253838498
0.001967279 0.548126562
0.004240578 0.781912929
0.006513878 0.831781609
0.008656026 0.935568791
0.010841891 0.996046699
0.012984039 0.994254859
0.015038752 0.780745054
0.017443204 0.571166135
0.019497917 0.421992388
0.021771217 0.347878292
0.023913365 0.314863976
0.026317816 0.273648917
0.028241378 0.248910367
0.030514678 0.229613667
0.032700543 0.210315136
0.034711539 0.201079179
0.03711599 0.179153501
0.039301855 0.174572119
0.041444003 0.161570874
0.043629868 0.159330731
0.045772016 0.158627627
0.047957881 0.133760075
0.050231181 0.128230852
0.052373329 0.135460425
0.054559194 0.125901964
0.056701342 0.120064418
0.058974642 0.122922579
0.061160507 0.127084935
0.063171503 0.12641248
0.06548852 0.117637177
0.067630668 0.105706827
0.069903968 0.112415362
0.072089833 0.119429932
0.074231981 0.105676178
0.076417846 0.107716872
0.078428842 0.107129046
0.080833293 0.10262909
0.082888007 0.094164854
0.085161306 0.092239896
0.087303454 0.085655788
0.089620471 0.081615114
0.091631467 0.076984785
0.093817332 0.076157254
0.096090632 0.070972035
0.09823278 0.060551277
0.100287493 0.071366358
0.102691945 0.065426801
0.104834093 0.059045344
0.107019958 0.056229269
0.109162106 0.061290519
0.111347971 0.051160701
0.113490119 0.053836338
0.115763418 0.05839439
0.117949284 0.057514252
0.120091431 0.047536765
0.122364731 0.04877829
0.300000000 0.000000000
-58
View File
@@ -1,58 +0,0 @@
4.37173E-05 0.224586133
0.001967279 0.518057252
0.004240578 0.775672976
0.006513878 0.825879049
0.008656026 0.899985882
0.010841891 0.967789786
0.012984039 0.99196296
0.015038752 0.992909754
0.017443204 0.994177124
0.019497917 0.991424846
0.021771217 0.993887344
0.023913365 0.998648926
0.026317816 0.999361915
0.028241378 0.998678679
0.030514678 0.998109885
0.032700543 0.997772638
0.034711539 0.997392554
0.03711599 0.999600524
0.039301855 0.994779551
0.041444003 0.996274647
0.043629868 0.996149207
0.045772016 0.998305774
0.047957881 0.99658353
0.050231181 0.995950077
0.052373329 0.995563046
0.054559194 0.995479284
0.056701342 0.993347667
0.058974642 0.990508095
0.061160507 0.990476431
0.063171503 0.988754593
0.06548852 0.987959462
0.067630668 0.987058572
0.069903968 0.988939946
0.072089833 0.986821236
0.074231981 0.985149296
0.076417846 0.987362592
0.078428842 0.986507086
0.080833293 0.98295765
0.082888007 0.983313364
0.085161306 0.983817788
0.087303454 0.983554288
0.089620471 0.979763465
0.091631467 0.975348682
0.093817332 0.975887375
0.096090632 0.972236927
0.09823278 0.965515882
0.100287493 0.962852402
0.102691945 0.956266464
0.104834093 0.953509902
0.107019958 0.945236222
0.109162106 0.808306574
0.111347971 0.186001557
0.113490119 0.078929784
0.115763418 0.051976893
0.117949284 0.05338487
0.120091431 0.04844847
0.122364731 0.053399168
0.300000000 0.000000000
Binary file not shown.
+93
View File
@@ -0,0 +1,93 @@
/*******************************************************************************
*
* McStas, neutron ray-tracing package
* Copyright (C) 1997-2011, All rights reserved
* Risoe National Laboratory, Roskilde, Denmark
* Institut Laue Langevin, Grenoble, France
*
* Component: ScanningSlit
*
* %I
* Written by: Jochen Stahn, based on the Slip component by
* Kim Lefmann and Henrik M. Roennow
* Date: 15. 10. 2013
* Version: $Revision: 0.00 $
* Origin: PSI
* Release: McStas 1.12c
*
* moving rectangular slit with optional insignificance cut
*
* %D
* A simple rectangular slit, where the blades in x-direction move with time.
* No transmission around the slit is allowed.
* If cutting option is used, low-weight neutron rays are ABSORBED
*
* Example: FastSlit(height=0.1)
*
* %P
* INPUT PARAMETERS
*
* height: height of the opening in y, centered.
*
* Optional parameters:
* cut: Lower limit for allowed weight (1)
*
* %E
*******************************************************************************/
DEFINE COMPONENT ScanningSlit
DEFINITION PARAMETERS ()
SETTING PARAMETERS (xmin=0, xmax=0, ymin=0, ymax=0, height=0.1, dist=2.4, lmin=4, lmax=10, omeg=0, eps=1.25, reso=0.01, dthet=1.5, posi=33.7)
OUTPUT PARAMETERS ()
/* STATE PARAMETERS (x,y,z,vx,vy,vz,t,s1,s2,p) */
DECLARE
%{
double lact;
%}
INITIALIZE
%{
if (height > 0) { ymax=height/2; ymin=-ymax; }
lmax *= (1+reso/2) ;
lmin *= (1-reso/2) ;
eps *= PI/180 ;
omeg *= PI/180 ;
dthet *= PI/180;
%}
TRACE
%{
PROP_Z0;
lact = 3.956e3*t/posi ;
xmin = -dist * (1+reso/2)*( eps + 0.5*dthet - dthet*(lact-lmin)/(lmax-lmin) ) ;
xmax = -dist * (1-reso/2)*( eps + 0.5*dthet - dthet*(lact-lmin)/(lmax-lmin) ) ;
if ((x<xmin || x>xmax || y<ymin || y>ymax))
ABSORB;
else
SCATTER;
%}
MCDISPLAY
%{
magnify("xy");
double xw, yh;
xw = (xmax - xmin)/2.0;
yh = (ymax - ymin)/2.0;
multiline(3, xmin-xw, (double)ymax, 0.0,
(double)xmin, (double)ymax, 0.0,
(double)xmin, ymax+yh, 0.0);
multiline(3, xmax+xw, (double)ymax, 0.0,
(double)xmax, (double)ymax, 0.0,
(double)xmax, ymax+yh, 0.0);
multiline(3, xmin-xw, (double)ymin, 0.0,
(double)xmin, (double)ymin, 0.0,
(double)xmin, ymin-yh, 0.0);
multiline(3, xmax+xw, (double)ymin, 0.0,
(double)xmax, (double)ymin, 0.0,
(double)xmax, ymin-yh, 0.0);
%}
END
+145
View File
@@ -0,0 +1,145 @@
/*******************************************************************************
* McStas instrument definition URL=http://www.mcstas.org
*
* Instrument: Selene_geometry
*
* %Identification
* Written by: Artur Glavic (artur.glavic@psi.ch); Jochen Stahn (jochen.stahn@psi.ch); Christine Klauser (christine.klauser@psi.ch)
* Date: 01. 11. 2017
* Origin: PSI
* Release: McStas 2.4.1
* Version: 1.0
* %INSTRUMENT_SITE: Estia (E02)
*
* Estia is a vertical sample, focusing reflectometer for small sample
*
* %Description
* This is a test model to analyze the impact of the displacement of the two Selene guide
* mirrors to each other and the virtual source. With this it is possible to evaluate
* necessary engineering requirements for the guide carriers.
*
* %Parameters
* sample_length: [m] Size of sample in beam direction, also controls virtual source opening
* sample_height: [m] Size of sample in vertical direction, also controls virtual source opening
* omegaa: [deg] sample rotation omega
*
* %End
*******************************************************************************/
DEFINE INSTRUMENT Selene_geometry(double sample_length=0.01, double sample_height=0.01, omegaa=1.2,
double tx_1=0.0, double tz_1=0.0, double rz_1=0.0, double ry_1=0.0,
double tx_2=0.0, double tz_2=0.0, double rz_2=0.0, double ry_2=0.0
)
DECLARE
%{
%}
INITIALIZE
%{
%}
TRACE
COMPONENT origin = Progress_bar()
AT (0,0,0) ABSOLUTE
COMPONENT ISCS = Arm()
AT (0, 0, 0) RELATIVE origin
COMPONENT arm_selene1 = Arm()
AT (tx_1, 0, tz_1) RELATIVE ISCS
ROTATED (0, ry_1, rz_1) RELATIVE ISCS
COMPONENT arm_selene2 = Arm()
AT (tx_2, 0, 2*selene_c+tz_2) RELATIVE ISCS
ROTATED (0, ry_2, rz_2) RELATIVE ISCS
COMPONENT arm_virtual_source_beam = Arm()
AT (0, 0, 0) RELATIVE arm_selene1
ROTATED (0, 1.25, 0) RELATIVE ISCS
// Axes used for the virtual source masks, this depends on the sample angle to achieve the correct footprint
COMPONENT arm_virtual_source = Arm()
AT (0, 0, 0) RELATIVE arm_virtual_source_beam
ROTATED (0, omegaa, 0) RELATIVE arm_virtual_source_beam
COMPONENT source = Moderator(radius = 0.01, focus_xw = selene_entry+0.002, focus_yh = selene_entry+0.002,
target_index=3, Emin=0.75, Emax=6)
AT (0,0,-0.1) RELATIVE ISCS
ROTATED (-1.25, 1.25, 0) RELATIVE ISCS
/* The actual virtual source mask, two L-shaped absorbers (first top-right) */
COMPONENT virtual_source_TR = Slit(
xmin = 0.0, xmax = 1.0, ymin = -1.0, ymax = sample_height/2)
AT (0, 0, -0.5*sample_length) RELATIVE arm_virtual_source
/* The actual virtual source mask, two L-shaped absorbers (second bottom-left) */
COMPONENT virtual_source_BL = Slit(
xmin = -1.0, xmax = 0.0, ymin = -sample_height/2, ymax = 1.0)
AT (0, 0, 0.5*sample_length) RELATIVE arm_virtual_source
%include "Estia_selene.instr"
COMPONENT M_n3 = Monitor_nD(
filename = "M_n3",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c-0.01) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
COMPONENT M_n2 = Monitor_nD(
filename = "M_n2",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c-0.005) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
COMPONENT M_n1 = Monitor_nD(
filename = "M_n1",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c-0.0025) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
COMPONENT M_0 = Monitor_nD(
filename = "M_0",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
COMPONENT MFP = Monitor_nD(
filename = "MFP",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c+0.0001) RELATIVE ISCS
ROTATED (0, 1.25+omegaa-90, 0) RELATIVE ISCS
COMPONENT M_p1 = Monitor_nD(
filename = "M_p1",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c+0.0025) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
COMPONENT M_p2 = Monitor_nD(
filename = "M_p2",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c+0.005) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
COMPONENT M_p3 = Monitor_nD(
filename = "M_p3",
options = "x limits=[-0.05 0.05] bins=1000 y limits=[-0.05 0.05] bins=1000 lambda limits=[0 35] bins=350",
xwidth = 0.5, yheight = 0.5)
AT (0, 0, 4*selene_c+0.01) RELATIVE ISCS
ROTATED (0, 1.25+omegaa, 0) RELATIVE ISCS
FINALLY
%{
%}
END
+2 -4
View File
@@ -1,6 +1,4 @@
#!/bin/bash
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/afs/psi.ch/project/sinq/sl6-64/mcstas2.4/mcstas/2.4/libs
if [ Estia_baseline.instr -nt Estia_baseline.out ] || [ ! -f Estia_baseline.out ] \
|| [ Estia_feeder.instr -nt Estia_baseline.out ] \
@@ -8,6 +6,6 @@ if [ Estia_baseline.instr -nt Estia_baseline.out ] || [ ! -f Estia_baseline.out
|| [ Estia_mf.instr -nt Estia_baseline.out ] \
|| [ Estia_selene2.instr -nt Estia_baseline.out ]; then
rm Estia_baseline.c Estia_baseline.out
mcstas -o Estia_baseline.c Estia_baseline.instr --trace
mpicc -O2 -o Estia_baseline.out Estia_baseline.c -lm -DUSE_MPI -DUSE_NEXUS -lNeXus
mcstas -o Estia_baseline.c Estia_baseline.instr
mpicc -O3 -o Estia_baseline.out Estia_baseline.c -lm -DUSE_MPI
fi
-3
View File
@@ -1,3 +0,0 @@
mcc05:72
mcc06:72
Binary file not shown.
+174
View File
@@ -0,0 +1,174 @@
#!/bin/bash
DEST=../results
ncount=1e10
use_cores=64
use_host=mcc05,mcc06
lambda_min=3.75
lambda_start=3.0
lambda_end=30.0
if [ Estia_liquids.instr -nt Estia_liquids.out ] || [ ! -f Estia_liquids.out ] \
|| [ Estia_feeder.instr -nt Estia_liquids.out ] \
|| [ Estia_selene1.instr -nt Estia_liquids.out ] \
|| [ Estia_mf.instr -nt Estia_liquids.out ] \
|| [ Estia_selene2.instr -nt Estia_liquids.out ]; then
rm Estia_liquids.c Estia_liquids.out
mcstas -o Estia_liquids.c Estia_liquids.instr
mpicc -O3 -o Estia_liquids.out Estia_liquids.c -lm -DUSE_MPI
fi
###################### Reference measurement ####################
sample=1
omega=1.3
DESTi=$DEST/liquids_ref_13
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=0 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_ref_25
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=0 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_ref_39
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=1 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_ref_61
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=2 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
###################### Ni-layer measurement ####################
sample=2
omega=1.3
DESTi=$DEST/liquids_ni_13
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=0 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_ni_25
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=0 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_ni_39
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=1 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_ni_61
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=2 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
###################### D2O measurement ####################
sample=0
omega=1.3
DESTi=$DEST/liquids_d2o_13
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=0 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_d2o_25
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=0 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_d2o_39
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=1 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
omega=2.5
DESTi=$DEST/liquids_d2o_61
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores --host $use_host Estia_liquids.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega theta_resolution=0.04 \
sample=$sample reflector=2 \
lambda_end=$lambda_end lambda_min=$lambda_min lambda_start=$lambda_start
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
mcstas -o Estia_monitor.c Estia_monitor.instr
mpicc -O3 -o Estia_monitor.out Estia_monitor.c -lm -DUSE_MPI
mpirun -np 6 Estia_monitor.out --ncount=1e8 --dir=../results/monitor --gravitation enable_windows=1 lambda_start=1.0 lambda_end=35.0 direct_beam=0
mpirun -np 6 Estia_monitor.out --ncount=1e8 --dir=../results/monitor_ref --gravitation enable_windows=1 lambda_start=1.0 lambda_end=35.0 direct_beam=2
mpirun -np 6 Estia_monitor.out --ncount=1e8 --dir=../results/monitor_trans --gravitation enable_windows=1 lambda_start=1.0 lambda_end=35.0 direct_beam=1
mpirun -np 6 Estia_monitor.out --ncount=1e8 --dir=../results/monitor100 --gravitation enable_windows=1 lambda_start=1.0 lambda_end=35.0 direct_beam=0 foil_thickness=0.0001
mpirun -np 6 Estia_monitor.out --ncount=1e8 --dir=../results/monitor001 --gravitation enable_windows=1 lambda_start=1.0 lambda_end=35.0 direct_beam=0 foil_thickness=0.000001
+213
View File
@@ -0,0 +1,213 @@
#!/bin/bash
DEST=../results
ncount=2e7
use_cores=4
sample=4
omega=0.8
sample_length=0.01
sample_height=0.01
lambda_start=3.0
lambda_end=32.0
###################### Brilliance Transfer 10x10mm² and 1x1mm² VS ####################
if [ Estia_baseline.instr -nt Estia_baseline.out ]; then
rm Estia_baseline.c Estia_baseline.out
mcstas -o Estia_baseline.c Estia_baseline.instr
mpicc -O3 -o Estia_baseline.out Estia_baseline.c -lm -DUSE_MPI -DUSE_NEXUS -lNeXus
fi
#
# if [ Estia_baseline_ana1.instr -nt Estia_baseline_ana1.out ]; then
# rm Estia_baseline_ana1.c Estia_baseline_ana1.out
# mcstas -o Estia_baseline_ana1.c Estia_baseline_ana1.instr
# mpicc -O3 -o Estia_baseline_ana1.out Estia_baseline_ana1.c -lm -DUSE_MPI -DUSE_NEXUS -lNeXus
# fi
#
# if [ Estia_baseline_ana2.instr -nt Estia_baseline_ana2.out ]; then
# rm Estia_baseline_ana2.c Estia_baseline_ana2.out
# mcstas -o Estia_baseline_ana2.c Estia_baseline_ana2.instr
# mpicc -O3 -o Estia_baseline_ana2.out Estia_baseline_ana2.c -lm -DUSE_MPI -DUSE_NEXUS -lNeXus
# fi
###################### Reference and Ni-layer measurement 10x10mm² sample ####################
# ncount=1e10
sample_length=0.01
sample_height=0.01
lambda_start=3.5
lambda_end=30.0
sample=1
# omega=1.0
# DESTi=$DEST/pol_ref_10x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=0 enable_analyzer=0
#
# DESTi=$DEST/pol1_10x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=1 enable_analyzer=0
#
# DESTi=$DEST/pol2_10x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=2 enable_analyzer=0
# #
# omega=7.0
# DESTi=$DEST/pol1_10x10_70
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=1 enable_analyzer=0
#
# DESTi=$DEST/pol2_10x10_70
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=2 enable_analyzer=0
#
# ncount=1e8
omega=0.0
# DESTi=$DEST/pol1_10x50_70
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0025 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=1 enable_analyzer=0
DESTi=$DEST/pol2_10x50_70
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --ncount=$ncount --gravitation \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0025 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=2 enable_analyzer=0
#
# ncount=5e9
# sample_length=0.01
# omega=1.0
# sample_length=0.003
# DESTi=$DEST/pol_ref_3x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=0 enable_analyzer=0
#
# DESTi=$DEST/pol1_3x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=1 enable_analyzer=0
#
# DESTi=$DEST/pol2_3x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=2 enable_analyzer=0
#
#
# sample_height=0.01
# sample_length=0.01
# DESTi=$DEST/ana1_10x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=0 enable_analyzer=1
# sample_height=0.001
# DESTi=$DEST/ana1_10x1_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline_ana1.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=0 enable_analyzer=1
#
# sample_height=0.01
# DESTi=$DEST/ana2_10x10_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=0 enable_analyzer=2
# sample_height=0.001
# DESTi=$DEST/ana2_10x1_10
# if [ -e "$DESTi" ]; then
# rm -r "$DESTi"
# fi
#
# mpirun -np $use_cores Estia_baseline_ana2.out \
# --dir="$DESTi" --ncount=$ncount --gravitation \
# omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.000 \
# sample=$sample sample_length=$sample_length sample_height=$sample_height \
# lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=0 enable_polarizer=0 enable_analyzer=2
###################### Reference and Ni-layer measurement 1x1mm² sample ####################
+52
View File
@@ -0,0 +1,52 @@
#!/usr/bin/env python
#-*- coding: utf8 -*-
import sys, os
from subprocess import call
from numpy import *
from scipy.optimize import leastsq
CALL='/afs/psi.ch/project/sinq/sl6-64/bin/mpirun -np $SLURM_NPROCS Estia_baseline.out '
CALL=+'--dir=../results/selene_geo --ncount=1e9 '
CALL=+'omegaa=1.0 sample=4 sample_length=0.001 sample_height=0.01 '
CALL=+'lambda_start=2.5 lambda_end=15.0 enable_gravity=1 enable_chopper=1 '
CALL=+'lambda_min=3.75 selene1_foot1y=%.4f selene1_foot2y=%.4f '
def B(x,w):
# box function with full width w
return float32(abs(x)<=(w/2.))
def G(x,I0,x0,sigma):
# Gaussian with intensity I0, center x0 and standard deviation sigma
return I0*exp(-0.5*(x-x0)**2/sigma**2)
def Intensity(x, p):
I0, x0, sigma, w=p
return convolve(B(xc,w), G(xc, I0, x0, sigma), mode='same')
def Beam(x,I0,x0,sigma,w):
I=I0*where((x-x0)<(-w/2.), exp(-0.5*(x-x0+w/2.)**2/sigma**2),
where((x-x0)>(w/2.), exp(-0.5*(x-x0-w/2.)**2/sigma**2), 1.))
return I
def residuals(p, x, y):
I0, x0, sigma, w=p
return y-Beam(x, I0, x0, sigma, w)
def FWHM(pi):
rng=xc[where(Beam(xc, *pi)>=(pi[0]/2.))[0]]
return rng[-1]-rng[0]
x=linspace(-10.0005, 10.0005, 20001)
xc=(x[1:]+x[:-1])/2.
def analyze(fi):
sim=mr.McSim(fi)
det=sim['tof_sample']
ignore,y=det.project1d('x', bins=x/1000.)
p,res=leastsq(residuals, (y.max(), (xc*y).sum()/y.sum(), 0.01, 0.1), (xc, y))
return p,det
if __name__=='__main__':
pass
+86
View File
@@ -0,0 +1,86 @@
#!/bin/bash
DEST=../results
use_cores=6
###################### Compile model if necessary ####################
bash compile_if_neede.sh
######## Reference and Ni-layer conventional measurement 10x10mm² sample #############
ncount=1e10
sample_length=0.01
sample_height=0.01
lambda_start=3.25
lambda_min=3.75
lambda_end=12.75
sample=1
omega=1.0
DESTi=$DEST/tof_reference_10x10_10
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=1 theta_resolution=0.01 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_min=$lambda_min lambda_end=$lambda_end enable_gravity=1 enable_chopper=1
# Ni Sample
ncount=2e10
sample=2
omega=0.5
DESTi=$DEST/tof_nickle_10x10_05
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=1 theta_resolution=0.03 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_min=$lambda_min lambda_end=$lambda_end enable_gravity=1 enable_chopper=1
ncount=1e10
omega=1.2
DESTi=$DEST/tof_nickle_10x10_12
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=1 theta_resolution=0.03 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_min=$lambda_min lambda_end=$lambda_end enable_gravity=1 enable_chopper=1
ncount=5e9
omega=3.0
DESTi=$DEST/tof_nickle_10x10_30
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=1 theta_resolution=0.03 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_min=$lambda_min lambda_end=$lambda_end enable_gravity=1 enable_chopper=1
ncount=2e9
omega=7.5
DESTi=$DEST/tof_nickle_10x10_75
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=1 theta_resolution=0.03 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_min=$lambda_min lambda_end=$lambda_end enable_gravity=1 enable_chopper=1
###################### Reference and Ni-layer measurement 1x1mm² sample ####################
+46
View File
@@ -0,0 +1,46 @@
#!/bin/bash
DEST=../results
ncount=1e9
use_cores=6
sample=4
omega=0.8
sample_length=0.01
sample_height=0.01
lambda_start=3.0
lambda_end=32.0
bash compile_if_neede.sh
################# Reference and Ni-layer measurement 2 pulse skipping ####################
ncount=4e9
sample_length=0.01
sample_height=0.01
lambda_start=3.9
lambda_end=24.0
sample=1
omega=2.0
DESTi=$DEST/single_skip_reference
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0002 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=3
sample=2
DESTi=$DEST/single_skip_nickle
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0002 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=1 enable_chopper=3
+119
View File
@@ -0,0 +1,119 @@
#!/bin/bash
DEST=../results
ncount=1e9
use_cores=6
sample=1
omega=15.0
sample_length=0.02
sample_height=0.01
lambda_start=3.5
lambda_min=5.0
lambda_end=15.5
frame_usage=0.92
###################### Brilliance Transfer 10x10mm² and 1x1mm² VS ####################
bash compile_if_neede.sh
###################### Reference and Ni-layer measurement 10x10mm² sample ####################
frame_usage=0.92
DESTi=$DEST/chopper_f1_092
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
frame_usage=0.94
DESTi=$DEST/chopper_f1_094
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
frame_usage=0.96
DESTi=$DEST/chopper_f1_096
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
frame_usage=0.974
DESTi=$DEST/chopper_f1_097s
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
frame_usage=0.98
DESTi=$DEST/chopper_f1_098
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
frame_usage=0.99
DESTi=$DEST/chopper_f1_099
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
frame_usage=0.98
lambda_start=2.75
lambda_min=3.75
lambda_end=12.75
DESTi=$DEST/chopper_f1_375A
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_baseline.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0001 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
lambda_start=$lambda_start lambda_end=$lambda_end enable_gravity=0 enable_chopper=1 \
frame_usage=$frame_usage lambda_min=$lambda_min
###################### Reference and Ni-layer measurement 1x1mm² sample ####################
+32
View File
@@ -0,0 +1,32 @@
#!/bin/bash
DEST=../results
ncount=1e8
use_cores=6
sample=1
omega=0.8
sample_length=0.01
sample_height=0.015
if [ Estia_vs.instr -nt Estia_vs.out ]; then
rm Estia_vs.c Estia_vs.out
mcstas -t -o Estia_vs.c Estia_vs.instr
mpicc -O3 -o Estia_vs.out Estia_vs.c -lm -DUSE_MPI -DUSE_NEXUS -lNeXus
fi
omega=2.0
DESTi=$DEST/vs_data
if [ -e "$DESTi" ]; then
rm -r "$DESTi"
fi
mpirun -np $use_cores Estia_vs.out \
--dir="$DESTi" --format=NeXuS --ncount=$ncount --gravitation \
omegaa=$omega operationmode=0 theta_resolution=0.04 over_illumination=0.0025 \
sample=$sample sample_length=$sample_length sample_height=$sample_height \
enable_gravity=1 enable_chopper=0 source_power=5
###################### Reference and Ni-layer measurement 1x1mm² sample ####################
+40
View File
@@ -0,0 +1,40 @@
#!/bin/bash
#SBATCH -J mcEstia_1
#SBATCH -N 2
#SBATCH --ntasks-per-node=24
#SBATCH --time=1-00:00:00
#SBATCH --mail-type=fail
#SBATCH --mail-user=artur.glavic@psi.ch
#SBATCH -o stdout.log
#SBATCH -e stderr.log
#SBATCH --partition=ll_long
echo "Starting at `date`"
echo "Running on hosts: $SLURM_NODELIST"
echo "Running on $SLURM_NNODES nodes."
echo "Running on $SLURM_NPROCS processors."
echo "Current working directory is `pwd`"
/usr/bin/modulecmd tcsh load mcstas
bash compile_if_needed.sh
for y1 in $(seq -0.009 0.001 0.009)
do
for y2 in $(seq -0.009 0.001 0.009) $(seq -0.09 0.01 -0.01) $(seq 0.01 0.01 0.09) $(seq -0.5 0.1 -0.1) $(seq 0.1 0.1 0.5)
do
printf -v Y1 %.3f $y1
printf -v Y2 %.3f $y2
echo $Y1 $Y2
/afs/psi.ch/project/sinq/sl6-64/bin/mpirun -np $SLURM_NPROCS Estia_baseline.out \
--dir=../results/selene1_geo_$Y1\_$Y2 --ncount=1e9 \
omegaa=1.0 sample=4 sample_length=0.00005 sample_height=0.01 \
lambda_start=2.5 lambda_end=15.0 enable_gravity=1 enable_chopper=1 \
lambda_min=3.75 selene1_foot1y=$Y1 selene1_foot2y=$Y2
done
done
echo "Program finished with exit code $? at: `date`"
+40
View File
@@ -0,0 +1,40 @@
#!/bin/bash
#SBATCH -J mcEstia_2
#SBATCH -N 2
#SBATCH --ntasks-per-node=24
#SBATCH --time=1-00:00:00
#SBATCH --mail-type=fail
#SBATCH --mail-user=artur.glavic@psi.ch
#SBATCH -o stdout2.log
#SBATCH -e stderr2.log
#SBATCH --partition=ll_long
echo "Starting at `date`"
echo "Running on hosts: $SLURM_NODELIST"
echo "Running on $SLURM_NNODES nodes."
echo "Running on $SLURM_NPROCS processors."
echo "Current working directory is `pwd`"
/usr/bin/modulecmd tcsh load mcstas
bash compile_if_needed.sh
for y1 in $(seq -0.09 0.01 -0.01)
do
for y2 in $(seq -0.009 0.001 0.009) $(seq -0.09 0.01 -0.01) $(seq 0.01 0.01 0.09) $(seq -0.5 0.1 -0.1) $(seq 0.1 0.1 0.5)
do
printf -v Y1 %.3f $y1
printf -v Y2 %.3f $y2
echo $Y1 $Y2
/afs/psi.ch/project/sinq/sl6-64/bin/mpirun -np $SLURM_NPROCS Estia_baseline.out \
--dir=../results/selene1_geo_$Y1\_$Y2 --ncount=1e9 \
omegaa=1.0 sample=4 sample_length=0.00005 sample_height=0.01 \
lambda_start=2.5 lambda_end=15.0 enable_gravity=1 enable_chopper=1 \
lambda_min=3.75 selene1_foot1y=$Y1 selene1_foot2y=$Y2
done
done
echo "Program finished with exit code $? at: `date`"
+40
View File
@@ -0,0 +1,40 @@
#!/bin/bash
#SBATCH -J mcEstia_3
#SBATCH -N 2
#SBATCH --ntasks-per-node=24
#SBATCH --time=1-00:00:00
#SBATCH --mail-type=fail
#SBATCH --mail-user=artur.glavic@psi.ch
#SBATCH -o stdout3.log
#SBATCH -e stderr3.log
#SBATCH --partition=ll_long
echo "Starting at `date`"
echo "Running on hosts: $SLURM_NODELIST"
echo "Running on $SLURM_NNODES nodes."
echo "Running on $SLURM_NPROCS processors."
echo "Current working directory is `pwd`"
/usr/bin/modulecmd tcsh load mcstas
bash compile_if_needed.sh
for y1 in $(seq 0.01 0.01 0.09)
do
for y2 in $(seq -0.009 0.001 0.009) $(seq -0.09 0.01 -0.01) $(seq 0.01 0.01 0.09) $(seq -0.5 0.1 -0.1) $(seq 0.1 0.1 0.5)
do
printf -v Y1 %.3f $y1
printf -v Y2 %.3f $y2
echo $Y1 $Y2
/afs/psi.ch/project/sinq/sl6-64/bin/mpirun -np $SLURM_NPROCS Estia_baseline.out \
--dir=../results/selene1_geo_$Y1\_$Y2 --ncount=1e9 \
omegaa=1.0 sample=4 sample_length=0.00005 sample_height=0.01 \
lambda_start=2.5 lambda_end=15.0 enable_gravity=1 enable_chopper=1 \
lambda_min=3.75 selene1_foot1y=$Y1 selene1_foot2y=$Y2
done
done
echo "Program finished with exit code $? at: `date`"
+40
View File
@@ -0,0 +1,40 @@
#!/bin/bash
#SBATCH -J mcEstia_4
#SBATCH -N 2
#SBATCH --ntasks-per-node=24
#SBATCH --time=1-00:00:00
#SBATCH --mail-type=fail
#SBATCH --mail-user=artur.glavic@psi.ch
#SBATCH -o stdout4.log
#SBATCH -e stderr4.log
#SBATCH --partition=ll_long
echo "Starting at `date`"
echo "Running on hosts: $SLURM_NODELIST"
echo "Running on $SLURM_NNODES nodes."
echo "Running on $SLURM_NPROCS processors."
echo "Current working directory is `pwd`"
/usr/bin/modulecmd tcsh load mcstas
bash compile_if_needed.sh
for y1 in $(seq -0.5 0.1 -0.1)
do
for y2 in $(seq -0.009 0.001 0.009) $(seq -0.09 0.01 -0.01) $(seq 0.01 0.01 0.09) $(seq -0.5 0.1 -0.1) $(seq 0.1 0.1 0.5)
do
printf -v Y1 %.3f $y1
printf -v Y2 %.3f $y2
echo $Y1 $Y2
/afs/psi.ch/project/sinq/sl6-64/bin/mpirun -np $SLURM_NPROCS Estia_baseline.out \
--dir=../results/selene1_geo_$Y1\_$Y2 --ncount=1e9 \
omegaa=1.0 sample=4 sample_length=0.00005 sample_height=0.01 \
lambda_start=2.5 lambda_end=15.0 enable_gravity=1 enable_chopper=1 \
lambda_min=3.75 selene1_foot1y=$Y1 selene1_foot2y=$Y2
done
done
echo "Program finished with exit code $? at: `date`"
+40
View File
@@ -0,0 +1,40 @@
#!/bin/bash
#SBATCH -J mcEstia_5
#SBATCH -N 2
#SBATCH --ntasks-per-node=24
#SBATCH --time=1-00:00:00
#SBATCH --mail-type=fail
#SBATCH --mail-user=artur.glavic@psi.ch
#SBATCH -o stdout5.log
#SBATCH -e stderr5.log
#SBATCH --partition=ll_long
echo "Starting at `date`"
echo "Running on hosts: $SLURM_NODELIST"
echo "Running on $SLURM_NNODES nodes."
echo "Running on $SLURM_NPROCS processors."
echo "Current working directory is `pwd`"
/usr/bin/modulecmd tcsh load mcstas
bash compile_if_needed.sh
for y1 in $(seq 0.1 0.1 0.5)
do
for y2 in $(seq -0.009 0.001 0.009) $(seq -0.09 0.01 -0.01) $(seq 0.01 0.01 0.09) $(seq -0.5 0.1 -0.1) $(seq 0.1 0.1 0.5)
do
printf -v Y1 %.3f $y1
printf -v Y2 %.3f $y2
echo $Y1 $Y2
/afs/psi.ch/project/sinq/sl6-64/bin/mpirun -np $SLURM_NPROCS Estia_baseline.out \
--dir=../results/selene1_geo_$Y1\_$Y2 --ncount=1e9 \
omegaa=1.0 sample=4 sample_length=0.00005 sample_height=0.01 \
lambda_start=2.5 lambda_end=15.0 enable_gravity=1 enable_chopper=1 \
lambda_min=3.75 selene1_foot1y=$Y1 selene1_foot2y=$Y2
done
done
echo "Program finished with exit code $? at: `date`"
-551
View File
File diff suppressed because one or more lines are too long