Changes in / [34a9e4e:9ed43f4] in sasmodels
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
example/oriented_usans.py
rea75043 r1cd24b4 19 19 scale=0.08, background=0, 20 20 sld=.291, sld_solvent=7.105, 21 r _polar=1800, r_polar_pd=0.222296, r_polar_pd_n=0,22 r _equatorial=2600, r_equatorial_pd=0.28, r_equatorial_pd_n=0,21 radius_polar=1800, radius_polar_pd=0.222296, radius_polar_pd_n=0, 22 radius_equatorial=2600, radius_equatorial_pd=0.28, radius_equatorial_pd_n=0, 23 23 theta=60, theta_pd=0, theta_pd_n=0, 24 24 phi=60, phi_pd=0, phi_pd_n=0, … … 26 26 27 27 # SET THE FITTING PARAMETERS 28 model.r _polar.range(1000, 10000)29 model.r _equatorial.range(1000, 10000)28 model.radius_polar.range(1000, 10000) 29 model.radius_equatorial.range(1000, 10000) 30 30 model.theta.range(0, 360) 31 31 model.phi.range(0, 360) -
sasmodels/data.py
ra769b54 r09e9e13 450 450 if view is 'log': 451 451 mtheory[mtheory <= 0] = masked 452 plt.plot(data.x, scale*mtheory, '-' , hold=True)452 plt.plot(data.x, scale*mtheory, '-') 453 453 all_positive = all_positive and (mtheory > 0).all() 454 454 some_present = some_present or (mtheory.count() > 0) … … 457 457 plt.ylim(*limits) 458 458 459 plt.xscale('linear' if not some_present or non_positive_x else view) 459 plt.xscale('linear' if not some_present or non_positive_x 460 else view if view is not None 461 else 'log') 460 462 plt.yscale('linear' 461 463 if view == 'q4' or not some_present or not all_positive 462 else view) 464 else view if view is not None 465 else 'log') 463 466 plt.xlabel("$q$/A$^{-1}$") 464 467 plt.ylabel('$I(q)$') 468 title = ("data and model" if use_theory and use_data 469 else "data" if use_data 470 else "model") 471 plt.title(title) 465 472 466 473 if use_calc: … … 482 489 if num_plots > 1: 483 490 plt.subplot(1, num_plots, use_calc + 2) 484 plt.plot(data.x, mresid, ' -')491 plt.plot(data.x, mresid, '.') 485 492 plt.xlabel("$q$/A$^{-1}$") 486 493 plt.ylabel('residuals') 487 plt.xscale('linear' if not some_present or non_positive_x else view) 494 plt.xscale('linear') 495 plt.title('(model - Iq)/dIq') 488 496 489 497 … … 512 520 if theory is not None: 513 521 if is_tof: 514 plt.plot(data.x, np.log(theory)/(data.lam*data.lam), '-' , hold=True)522 plt.plot(data.x, np.log(theory)/(data.lam*data.lam), '-') 515 523 else: 516 plt.plot(data.x, theory, '-' , hold=True)524 plt.plot(data.x, theory, '-') 517 525 if limits is not None: 518 526 plt.ylim(*limits) -
sasmodels/models/onion.py
r925ad6e rbccb40f 1 1 r""" 2 2 This model provides the form factor, $P(q)$, for a multi-shell sphere where 3 the scattering length density (SLD) of theeach shell is described by an3 the scattering length density (SLD) of each shell is described by an 4 4 exponential, linear, or constant function. The form factor is normalized by 5 5 the volume of the sphere where the SLD is not identical to the SLD of the … … 142 142 143 143 For $A = 0$, the exponential function has no dependence on the radius (so that 144 $\rho_\text{out}$ is ignored this case) and becomes flat. We set the constant144 $\rho_\text{out}$ is ignored in this case) and becomes flat. We set the constant 145 145 to $\rho_\text{in}$ for convenience, and thus the form factor contributed by 146 146 the shells is … … 346 346 # flat shell 347 347 z.append(z_current + thickness[k]) 348 rho.append(sld_ out[k])348 rho.append(sld_in[k]) 349 349 else: 350 350 # exponential shell … … 357 357 z.append(z_current+z_shell) 358 358 rho.append(slope*exp(A[k]*z_shell/thickness[k]) + const) 359 359 360 360 # add in the solvent 361 361 z.append(z[-1]) -
sasmodels/models/spherical_sld.py
r3330bb4 r63a7fe8 199 199 category = "shape:sphere" 200 200 201 SHAPES = [ ["erf(|nu|*z)", "Rpow(z^|nu|)", "Lpow(z^|nu|)",202 "Rexp(-|nu|z)", "Lexp(-|nu|z)"]]201 SHAPES = ["erf(|nu|*z)", "Rpow(z^|nu|)", "Lpow(z^|nu|)", 202 "Rexp(-|nu|z)", "Lexp(-|nu|z)"] 203 203 204 204 # pylint: disable=bad-whitespace, line-too-long … … 209 209 ["thickness[n_shells]", "Ang", 100.0, [0, inf], "volume", "thickness shell"], 210 210 ["interface[n_shells]", "Ang", 50.0, [0, inf], "volume", "thickness of the interface"], 211 ["shape[n_shells]", "", 0, SHAPES,"", "interface shape"],211 ["shape[n_shells]", "", 0, [SHAPES], "", "interface shape"], 212 212 ["nu[n_shells]", "", 2.5, [0, inf], "", "interface shape exponent"], 213 213 ["n_steps", "", 35, [0, inf], "", "number of steps in each interface (must be an odd integer)"], -
sasmodels/rst2html.py
rc4e3215 rf2f5413 155 155 return frame 156 156 157 def view_html_wxapp(html, url=""): 158 import wx # type: ignore 159 app = wx.App() 160 frame = wxview(html, url) 161 app.MainLoop() 162 163 def view_url_wxapp(url): 164 import wx # type: ignore 165 from wx.html2 import WebView 166 app = wx.App() 167 frame = wx.Frame(None, -1, size=(850, 540)) 168 view = WebView.New(frame) 169 view.LoadURL(url) 170 frame.Show() 171 app.MainLoop() 172 157 173 def qtview(html, url=""): 158 174 try: … … 167 183 return helpView 168 184 169 def view_html_wxapp(html, url=""):170 import wx # type: ignore171 app = wx.App()172 frame = wxview(html, url)173 app.MainLoop()174 175 185 def view_html_qtapp(html, url=""): 176 186 import sys … … 183 193 sys.exit(app.exec_()) 184 194 185 def view_rst_app(filename, qt=False): 195 def view_url_qtapp(url): 196 import sys 197 try: 198 from PyQt5.QtWidgets import QApplication 199 except ImportError: 200 from PyQt4.QtGui import QApplication 201 app = QApplication([]) 202 try: 203 from PyQt5.QtWebKitWidgets import QWebView 204 from PyQt5.QtCore import QUrl 205 except ImportError: 206 from PyQt4.QtWebkit import QWebView 207 from PyQt4.QtCore import QUrl 208 frame = QWebView() 209 frame.load(QUrl(url)) 210 frame.show() 211 sys.exit(app.exec_()) 212 213 def view_help(filename, qt=False): 186 214 import os 187 html = load_rst_as_html(filename) 188 url="file://"+os.path.abspath(filename)+"/" 189 if qt: 190 view_html_qtapp(html, url) 215 url="file:///"+os.path.abspath(filename).replace("\\","/") 216 if filename.endswith('.rst'): 217 html = load_rst_as_html(filename) 218 if qt: 219 view_html_qtapp(html, url) 220 else: 221 view_html_wxapp(html, url) 191 222 else: 192 view_html_wxapp(html, url) 223 if qt: 224 view_url_qtapp(url) 225 else: 226 view_url_wxapp(url) 193 227 194 228 if __name__ == "__main__": 195 229 import sys 196 view_ rst_app(sys.argv[1], qt=True)197 230 view_help(sys.argv[1], qt=True) 231
Note: See TracChangeset
for help on using the changeset viewer.