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
ed3b7b1c
Commit
ed3b7b1c
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
expand auto
parent
292e58cd
No related branches found
No related tags found
1 merge request
!1657
Ingest several internal reports into DevRef
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Doc/DevRef/DevRef.pdf
+0
-0
0 additions, 0 deletions
Doc/DevRef/DevRef.pdf
Doc/DevRef/Multilayers.tex
+11
-1
11 additions, 1 deletion
Doc/DevRef/Multilayers.tex
Resample/Specular/ComputeFluxMagnetic.cpp
+1
-1
1 addition, 1 deletion
Resample/Specular/ComputeFluxMagnetic.cpp
with
12 additions
and
2 deletions
Doc/DevRef/DevRef.pdf
+
0
−
0
View file @
ed3b7b1c
No preview for this file type
This diff is collapsed.
Click to expand it.
Doc/DevRef/Multilayers.tex
+
11
−
1
View file @
ed3b7b1c
...
...
@@ -718,6 +718,10 @@ In the case of a semi-infinite layer, the vertical component becomes zero and
Last updated to reflect the actual code in May 2023.
%===============================================================================
\subsection
{
Call chain
}
%===============================================================================
\footnotesize
\parindent
=0pt
\parskip
=1ex
...
...
@@ -758,6 +762,12 @@ compute up and down travelling amplitudes for each sample layer.
Functions
\T
{
fluxes
}
and
\T
{
topLayerR
}
are implemented
in files
\SRC
{
Resample/Specular
}{
ComputeFluxScalar.cpp
}
and
\SRC
{
Resample/Specular
}{
ComputeFluxMagnetic.cpp
}
.
\SRC
{
Resample/Specular
}{
ComputeFluxMagnetic.cpp
}
,
where they share some local functions.
%===============================================================================
\subsection
{
Scalar fluxes
}
%===============================================================================
\index
{
Multilayer|)
}
%
This diff is collapsed.
Click to expand it.
Resample/Specular/ComputeFluxMagnetic.cpp
+
1
−
1
View file @
ed3b7b1c
...
...
@@ -183,7 +183,7 @@ Fluxes Compute::SpecularMagnetic::fluxes(const SliceStack& slices, const R3& k,
ASSERT
(
slices
.
size
()
==
kz
.
size
());
Fluxes
result
;
for
(
auto
&
coeff
:
::
computeFlux
(
slices
,
kz
,
slices
.
roughnessModel
(),
forward
))
for
(
const
MatrixFlux
&
coeff
:
::
computeFlux
(
slices
,
kz
,
slices
.
roughnessModel
(),
forward
))
result
.
emplace_back
(
new
MatrixFlux
(
coeff
));
return
result
;
...
...
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