Combines dataArrays with attributes for fitting plotting and analysis including models for Xray and neutron scattering
Project description
The aim of Jscatter is treatment of experimental data and models:
Reading and analyzing experimental data with associated attributes as temperature, wavevector, comment, ….
Multidimensional fitting taking attributes into account.
Providing useful models for neutron and X-ray scattering form factors, structure factors and dynamic models (quasi elastic neutron scattering) and other topics.
Simplified plotting with paper ready quality.
Easy model building for non programmers.
Python scripts/Jupyter Notebooks to document data evaluation and modelling.
Main concept
Data are organised in dataArray/dataList with attributes as .temperature, .wavevector, .pressure and methods for filter, merging and more.
Multidimensional, attribute dependent fitting (least square Levenberg-Marquardt, Bayesian fit, differential evolution, …).
Provide relative simple plotting commands to allow a fast view on data and possible later pretty up.
User write models using the existing model library or self created models.
The model library contains routines e.g. for vectorized quadrature (formel) or specialised models for scattering as formfactor, structurefactor, dynamic and biomacromolecules.
Documentation
Documentation located at http://jscatter.readthedocs.io. A number of examples how to use Jscatter is provided and can be run from Jscatter.
A short example how to use Jscatter
import jscatter as js i5=js.dL(js.examples.datapath+'/iqt_1hho.dat') # read the data (16 sets) with attributes # define a model for the fit diffusion=lambda A,D,t,wavevector,elastic=0:A*np.exp(-wavevector**2*D*t)+elastic # do the fit i5.fit(model=diffusion, # the fit function freepar={'D':[0.08],'A':0.98}, # start parameters, "[]" -> independent fit fixpar={'elastic':0.0}, # fixed parameters mapNames={'t':'X','wavevector':'q'}) # map names from the model to names from the data p=js.grace(1.2,0.8) # open a plot p.plot(i5,symbol=[-1,0.4,-1],legend='Q=$q') # plot with Q values in legend p.plot(i5.lastfit,symbol=0,line=[1,1,-1]) # plot fit as lines p.save('test.agr')
** Released under the GPLv3 **
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file jscatter-1.6.1.tar.gz
.
File metadata
- Download URL: jscatter-1.6.1.tar.gz
- Upload date:
- Size: 19.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8505d5c874b7a3fd926085faaa0d417e07c662eff4ba2cbd44c3dac25d370114 |
|
MD5 | 63b2e4091855b8a18eddac6683194d2c |
|
BLAKE2b-256 | 2f47dab7c1e5ebd4534ec22a13dcf6104190319d0416467fd50aa1bddbce7a65 |