Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
2a777f17
Commit
2a777f17
authored
6 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Update fit example to match tutorial text
parent
0b8ac683
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Examples/python/fitting/ex01_BasicExamples/basic_fitting_tutorial.py
+15
-15
15 additions, 15 deletions
...thon/fitting/ex01_BasicExamples/basic_fitting_tutorial.py
with
15 additions
and
15 deletions
Examples/python/fitting/ex01_BasicExamples/basic_fitting_tutorial.py
+
15
−
15
View file @
2a777f17
...
...
@@ -4,9 +4,9 @@ of substrate.
"""
import
bornagain
as
ba
from
bornagain
import
deg
,
angstrom
,
nm
import
numpy
as
np
from
matplotlib
import
pyplot
as
plt
from
bornagain
import
deg
,
angstrom
,
nm
def
get_sample
(
params
):
...
...
@@ -42,6 +42,19 @@ def get_sample(params):
return
multi_layer
def
get_simulation
(
params
):
"""
Returns a GISAXS simulation with beam and detector defined
"""
simulation
=
ba
.
GISASSimulation
()
simulation
.
setDetectorParameters
(
100
,
-
1.0
*
deg
,
1.0
*
deg
,
100
,
0.0
*
deg
,
2.0
*
deg
)
simulation
.
setBeamParameters
(
1.0
*
angstrom
,
0.2
*
deg
,
0.0
*
deg
)
simulation
.
setBeamIntensity
(
1e+08
)
simulation
.
setSample
(
get_sample
(
params
))
return
simulation
def
create_real_data
():
"""
Generating
"
experimental
"
data by running simulation with certain parameters.
...
...
@@ -73,19 +86,6 @@ def load_real_data():
return
np
.
loadtxt
(
"
basic_fitting_tutorial_data.txt.gz
"
,
dtype
=
float
)
def
get_simulation
(
params
):
"""
Returns a GISAXS simulation with beam and detector defined
"""
simulation
=
ba
.
GISASSimulation
()
simulation
.
setDetectorParameters
(
100
,
-
1.0
*
deg
,
1.0
*
deg
,
100
,
0.0
*
deg
,
2.0
*
deg
)
simulation
.
setBeamParameters
(
1.0
*
angstrom
,
0.2
*
deg
,
0.0
*
deg
)
simulation
.
setBeamIntensity
(
1e+08
)
simulation
.
setSample
(
get_sample
(
params
))
return
simulation
def
run_fitting
():
"""
Setup simulation and fit
...
...
@@ -94,7 +94,7 @@ def run_fitting():
real_data
=
load_real_data
()
fit_objective
=
ba
.
FitObjective
()
fit_objective
.
addSimulationAndData
(
get_simulation
,
real_data
,
1.0
)
fit_objective
.
addSimulationAndData
(
get_simulation
,
real_data
)
# Print fit progress on every n-th iteration.
fit_objective
.
initPrint
(
10
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment