Skip to content
Snippets Groups Projects
Unverified Commit fa7646c1 authored by Yurov, Dmitry's avatar Yurov, Dmitry Committed by GitHub
Browse files

Merge pull request #785 from waltervh/develop

Merge release branch
parents 3d719837 953f57f2
No related branches found
No related tags found
No related merge requests found
BornAgain source code is currently developed by
* Jonathan Fisher
* Juan Carmona Loaiza
* Marina Ganeva
* Gennady Pospelov
* Walter Van Herck
......@@ -12,7 +12,9 @@ Our former contributors:
* Rebecca Brydon
* Jan Burle
* Céline Durniak
* Jonathan Fisher
* Mohammad Mahadi Hasan
* Anik Halder
* Sezer Karaca
* Abhishek Khanna
* David Li
......
BornAgain-1.15.0, released 2019.02.25
> API changes:
1) Python: method getAlphaAxis renamed into coordinateAxis in SpecularSimulation
1) Python: method getAlphaAxis renamed into coordinateAxis in SpecularSimulation
2) Python: add axis() accessor in SimulationResult (to be used instead SimulationResult.data().getAxis()
> Summary:
1) Act on feedback from BornAgain school in December 2018: new features and corrections
2) Support q-based specular simulations
3) Implement features from specific user requests
4) Various bugfixes
* Bug #2262: Fix memory leakage in Python API
* Bug #2265: 3D view incorrectly represents particle positions for layouts connected to deeper layers
* Bug #2268: Sometimes parameter values are reset when they go out of focus
* Bug #2270: Repeating values after removing unsorted data
* Bug #2277: GUI: value of wavelength is not propagated on switch from InstrumentView
* Bug #2286: Fix usage of Debye-Waller factors for superlattices
* Bug #2304: Uncaught exception in GUI during real time tuning
* Bug #2305: Premature deletion of OutputData<double> in python
* Feature #2259: Make off-spec simulation fittable
* Feature #2260: Remove domain size and damping length in paracrystals in favour of a small q expansion
* Feature #2267: Activate polarized sans
* Feature #2278: Add Debye Waller factor for 1D and 2D lattice
* Feature #2282: Implement position variance in 3d view
* Feature #2290: Implement simplified 2D peak search for GISAS images
* Feature #2292: Switch internal specular computations to q values
* Feature #2297: Provide q-based input for specular simulations
* Feature #2303: Implement twin particle interference function
* Documentation #2273: Comparative overview of existing reflectometry packages
* Testing #2289: Test slicing and averaging functionality for reflectometry in BornAgain
* Support #2291: Provide hard disc Percus-Yevick interference function
BornAgain-1.14.0, released 2018.12.07
> No API changes
......
......@@ -38,7 +38,7 @@ PROJECT_NAME = "BornAgain"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 1.14.99
PROJECT_NUMBER = 1.15.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
......
......@@ -210,7 +210,7 @@ def run_fitting():
print("Start preliminary fitting of experimental data:\n")
preliminary_result = differential_evolution(objective_primary, bounds,
maxiter=20, popsize=10,
maxiter=20, popsize=60,
mutation=(0.5, 1.5),
disp=True, tol=1e-5)
......@@ -227,7 +227,7 @@ def run_fitting():
fine_tuning_result = differential_evolution(objective_fine, bounds,
fixed_args, maxiter=20,
popsize=10, mutation=(0.5, 1.5),
popsize=40, mutation=(0.5, 1.5),
disp=True, tol=1e-5)
result = create_par_dict(*fixed_args, *fine_tuning_result.x)
......
set(BornAgain_VERSION_MAJOR 1)
set(BornAgain_VERSION_MINOR 14)
set(BornAgain_VERSION_PATCH 99)
set(BornAgain_VERSION_MINOR 15)
set(BornAgain_VERSION_PATCH 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment