ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change
on this file since c25f1fa was
fca6936,
checked in by Mathieu Doucet <doucetm@…>, 16 years ago
|
First cut at better polydisp and averaging implementation for sans models.
|
-
Property mode set to
100644
|
File size:
769 bytes
|
Line | |
---|
1 | import sys, os, math |
---|
2 | from sans.models.CylinderModel import CylinderModel |
---|
3 | from sans.models.DisperseModel import DisperseModel |
---|
4 | |
---|
5 | os.system('gcc -c ../../../libigor/libCylinder.c -o libigor.o -I../c_extensions -I../../../libigor') |
---|
6 | os.system('gcc -c ../c_extensions/cylinder.c -o libcyl.o -I../c_extensions -I../../../libigor') |
---|
7 | os.system('g++ -mno-cygwin cylinder.cpp parameters.cpp dispersion_visitor.cpp libigor.o libcyl.o -D__MODELS_STANDALONE__ -I../c_extensions -I../../../libigor') |
---|
8 | os.system('a.exe') |
---|
9 | |
---|
10 | |
---|
11 | cyl = CylinderModel() |
---|
12 | cyl.setParam('cyl_phi', 0.0) |
---|
13 | cyl.setParam('cyl_theta', 0.0) |
---|
14 | |
---|
15 | disp = DisperseModel(cyl, ['radius'], [5]) |
---|
16 | disp.setParam('n_pts', 100) |
---|
17 | print "" |
---|
18 | print "Cyl (python): ", cyl.run(0.001) |
---|
19 | print "Disp(pyhton): ", disp.run(0.001) |
---|
20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.