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
36b90c60
Commit
36b90c60
authored
8 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
further simplification of function interfaces
parent
419ce894
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/Multilayer/SizeSpacingCorrelationApproximationStrategy.cpp
+12
-14
12 additions, 14 deletions
...ultilayer/SizeSpacingCorrelationApproximationStrategy.cpp
Core/Multilayer/SizeSpacingCorrelationApproximationStrategy.h
+6
-8
6 additions, 8 deletions
.../Multilayer/SizeSpacingCorrelationApproximationStrategy.h
with
18 additions
and
22 deletions
Core/Multilayer/SizeSpacingCorrelationApproximationStrategy.cpp
+
12
−
14
View file @
36b90c60
...
...
@@ -53,8 +53,8 @@ double SizeSpacingCorrelationApproximationStrategy::evaluateForList(
double
fraction
=
m_weighted_ffs
[
i
]
->
m_abundance
/
m_total_abundance
;
diffuse_intensity
+=
fraction
*
std
::
norm
(
ff
);
}
complex_t
mcff
=
getMeanCharacteristicFF
(
qp
,
m_ff
);
complex_t
mcffc
=
getMeanConjCharacteristicFF
(
qp
,
m_ff
);
complex_t
mcff
=
getMeanCharacteristicFF
(
qp
);
complex_t
mcffc
=
getMeanConjCharacteristicFF
(
qp
);
complex_t
p2kappa
=
getCharacteristicSizeCoupling
(
qp
,
2.0
*
m_kappa
);
complex_t
omega
=
getCharacteristicDistribution
(
qp
);
double
interference_intensity
=
2.0
*
(
mcff
*
mcffc
*
omega
/
(
1.0
-
p2kappa
*
omega
)).
real
();
...
...
@@ -78,8 +78,8 @@ double SizeSpacingCorrelationApproximationStrategy::evaluateForMatrixList(
double
fraction
=
m_weighted_ffs
[
i
]
->
m_abundance
/
m_total_abundance
;
diffuse_matrix
+=
fraction
*
(
ff
*
sim_element
.
getPolarization
()
*
ff
.
adjoint
());
}
Eigen
::
Matrix2cd
mcff
=
getMeanCharacteristicMatrixFF
(
sim_element
.
getMeanQ
(),
m_ff_pol
);
Eigen
::
Matrix2cd
mcffc
=
getMeanConjCharacteristicMatrixFF
(
sim_element
.
getMeanQ
(),
m_ff_pol
);
Eigen
::
Matrix2cd
mcff
=
getMeanCharacteristicMatrixFF
(
qp
);
Eigen
::
Matrix2cd
mcffc
=
getMeanConjCharacteristicMatrixFF
(
qp
);
complex_t
p2kappa
=
getCharacteristicSizeCoupling
(
qp
,
2.0
*
m_kappa
);
complex_t
omega
=
getCharacteristicDistribution
(
qp
);
Eigen
::
Matrix2cd
interference_matrix
...
...
@@ -92,44 +92,42 @@ double SizeSpacingCorrelationApproximationStrategy::evaluateForMatrixList(
}
complex_t
SizeSpacingCorrelationApproximationStrategy
::
getMeanCharacteristicFF
(
double
qp
,
const
std
::
vector
<
complex_t
>
&
ff_list
)
const
double
qp
)
const
{
complex_t
result
(
0.0
,
0.0
);
for
(
size_t
i
=
0
;
i
<
m_weighted_ffs
.
size
();
++
i
)
result
+=
m_weighted_ffs
[
i
]
->
m_abundance
*
ff
_list
[
i
]
result
+=
m_weighted_ffs
[
i
]
->
m_abundance
*
m_
ff
[
i
]
*
calculatePositionOffsetPhase
(
qp
,
m_kappa
,
i
);
return
result
/
m_total_abundance
;
}
complex_t
SizeSpacingCorrelationApproximationStrategy
::
getMeanConjCharacteristicFF
(
double
qp
,
const
std
::
vector
<
complex_t
>&
ff_list
)
const
double
qp
)
const
{
complex_t
result
(
0.0
,
0.0
);
for
(
size_t
i
=
0
;
i
<
m_weighted_ffs
.
size
();
++
i
)
result
+=
m_weighted_ffs
[
i
]
->
m_abundance
*
std
::
conj
(
ff
_list
[
i
])
result
+=
m_weighted_ffs
[
i
]
->
m_abundance
*
std
::
conj
(
m_
ff
[
i
])
*
calculatePositionOffsetPhase
(
qp
,
m_kappa
,
i
);
return
result
/
m_total_abundance
;
}
Eigen
::
Matrix2cd
SizeSpacingCorrelationApproximationStrategy
::
getMeanCharacteristicMatrixFF
(
const
kvector_t
q
,
const
matrixFFVector_t
&
ff_list
)
const
double
qp
)
const
{
double
qp
=
q
.
magxy
();
Eigen
::
Matrix2cd
result
=
Eigen
::
Matrix2cd
::
Zero
();
for
(
size_t
i
=
0
;
i
<
m_weighted_ffs
.
size
();
++
i
)
result
+=
m_weighted_ffs
[
i
]
->
m_abundance
*
calculatePositionOffsetPhase
(
qp
,
m_kappa
,
i
)
*
ff_
list
[
i
];
*
m_
ff_
pol
[
i
];
return
result
/
m_total_abundance
;
}
Eigen
::
Matrix2cd
SizeSpacingCorrelationApproximationStrategy
::
getMeanConjCharacteristicMatrixFF
(
const
kvector_t
q
,
const
matrixFFVector_t
&
ff_list
)
const
double
qp
)
const
{
double
qp
=
q
.
magxy
();
Eigen
::
Matrix2cd
result
=
Eigen
::
Matrix2cd
::
Zero
();
for
(
size_t
i
=
0
;
i
<
m_weighted_ffs
.
size
();
++
i
)
result
+=
m_weighted_ffs
[
i
]
->
m_abundance
*
calculatePositionOffsetPhase
(
qp
,
m_kappa
,
i
)
*
ff_
list
[
i
].
adjoint
();
*
m_
ff_
pol
[
i
].
adjoint
();
return
result
/
m_total_abundance
;
}
...
...
This diff is collapsed.
Click to expand it.
Core/Multilayer/SizeSpacingCorrelationApproximationStrategy.h
+
6
−
8
View file @
36b90c60
...
...
@@ -36,18 +36,16 @@ private:
double
evaluateForList
(
const
SimulationElement
&
sim_element
)
const
final
;
double
evaluateForMatrixList
(
const
SimulationElement
&
sim_element
)
const
final
;
complex_t
getMeanCharacteristicFF
(
double
qp
,
const
std
::
vector
<
complex_t
>&
ff_list
)
const
;
complex_t
getMeanConjCharacteristicFF
(
double
qp
,
const
std
::
vector
<
complex_t
>&
ff_list
)
const
;
Eigen
::
Matrix2cd
getMeanCharacteristicMatrixFF
(
const
kvector_t
q
,
const
matrixFFVector_t
&
ff_list
)
const
;
Eigen
::
Matrix2cd
getMeanConjCharacteristicMatrixFF
(
const
kvector_t
q
,
const
matrixFFVector_t
&
ff_list
)
const
;
complex_t
getMeanCharacteristicFF
(
double
qp
)
const
;
complex_t
getMeanConjCharacteristicFF
(
double
qp
)
const
;
Eigen
::
Matrix2cd
getMeanCharacteristicMatrixFF
(
double
qp
)
const
;
Eigen
::
Matrix2cd
getMeanConjCharacteristicMatrixFF
(
double
qp
)
const
;
complex_t
getCharacteristicDistribution
(
double
qp
)
const
;
complex_t
getCharacteristicSizeCoupling
(
double
qp
,
double
kappa
)
const
;
complex_t
calculatePositionOffsetPhase
(
double
qp
,
double
kappa
,
size_t
index
)
const
;
void
initMeanRadius
();
double
m_mean_radius
;
double
m_kappa
;
};
...
...
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