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
6555bde2
Commit
6555bde2
authored
8 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
exp_I and mul_I in FFPolyhedron
parent
1644cf21
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/FormFactors/FormFactorBox.cpp
+1
-1
1 addition, 1 deletion
Core/FormFactors/FormFactorBox.cpp
Core/FormFactors/FormFactorPolyhedron.cpp
+13
-13
13 additions, 13 deletions
Core/FormFactors/FormFactorPolyhedron.cpp
with
14 additions
and
14 deletions
Core/FormFactors/FormFactorBox.cpp
+
1
−
1
View file @
6555bde2
...
@@ -48,6 +48,6 @@ void FormFactorBox::init_parameters()
...
@@ -48,6 +48,6 @@ void FormFactorBox::init_parameters()
{
{
clearParameterPool
();
clearParameterPool
();
registerParameter
(
Length
,
&
m_length
,
AttLimits
::
n_positive
());
registerParameter
(
Length
,
&
m_length
,
AttLimits
::
n_positive
());
registerParameter
(
Width
,
&
m_width
,
AttLimits
::
n_positive
());
registerParameter
(
Width
,
&
m_width
,
AttLimits
::
n_positive
());
registerParameter
(
Height
,
&
m_height
,
AttLimits
::
n_positive
());
registerParameter
(
Height
,
&
m_height
,
AttLimits
::
n_positive
());
}
}
This diff is collapsed.
Click to expand it.
Core/FormFactors/FormFactorPolyhedron.cpp
+
13
−
13
View file @
6555bde2
...
@@ -36,8 +36,8 @@ typedef Geometry::BasicVector3D<double> kvector_t;
...
@@ -36,8 +36,8 @@ typedef Geometry::BasicVector3D<double> kvector_t;
#include
"IFormFactorBorn.h"
#include
"IFormFactorBorn.h"
#include
"FormFactorPolyhedron.h"
#include
"FormFactorPolyhedron.h"
static
complex_t
I
(
0.
,
1.
);
static
const
complex_t
I
(
0.
,
1.
);
static
double
eps
(
2e-16
);
static
const
double
eps
(
2e-16
);
#ifdef POLYHEDRAL_DIAGNOSTIC
#ifdef POLYHEDRAL_DIAGNOSTIC
extern
Diagnosis
diagnosis
;
extern
Diagnosis
diagnosis
;
...
@@ -255,7 +255,7 @@ complex_t PolyhedralFace::expansion(
...
@@ -255,7 +255,7 @@ complex_t PolyhedralFace::expansion(
count_return_condition
=
0
;
count_return_condition
=
0
;
if
(
count_return_condition
>
2
)
if
(
count_return_condition
>
2
)
return
sum
;
// regular exit
return
sum
;
// regular exit
n_fac
*
=
I
;
n_fac
=
mul_I
(
n_fac
)
;
}
}
#ifdef POLYHEDRAL_DIAGNOSTIC
#ifdef POLYHEDRAL_DIAGNOSTIC
if
(
!
diagnosis
.
request_convergence
)
if
(
!
diagnosis
.
request_convergence
)
...
@@ -275,7 +275,7 @@ complex_t PolyhedralFace::edge_sum_ff( cvector_t q, cvector_t qpa, bool sym_Ci )
...
@@ -275,7 +275,7 @@ complex_t PolyhedralFace::edge_sum_ff( cvector_t q, cvector_t qpa, bool sym_Ci )
const
PolyhedralEdge
&
e
=
edges
[
i
];
const
PolyhedralEdge
&
e
=
edges
[
i
];
complex_t
qE
=
e
.
qE
(
qpa
);
complex_t
qE
=
e
.
qE
(
qpa
);
complex_t
qR
=
e
.
qR
(
qpa
);
complex_t
qR
=
e
.
qR
(
qpa
);
complex_t
Rfac
=
sym_S2
?
sin
(
qR
)
:
(
sym_Ci
?
cos
(
e
.
qR
(
q
))
:
exp
(
I
*
qR
)
);
complex_t
Rfac
=
sym_S2
?
sin
(
qR
)
:
(
sym_Ci
?
cos
(
e
.
qR
(
q
))
:
exp
_I
(
qR
)
);
complex_t
vfac
;
complex_t
vfac
;
if
(
sym_S2
||
i
<
edges
.
size
()
-
1
)
{
if
(
sym_S2
||
i
<
edges
.
size
()
-
1
)
{
vfac
=
prevec
.
dot
(
e
.
E
());
vfac
=
prevec
.
dot
(
e
.
E
());
...
@@ -302,7 +302,7 @@ complex_t PolyhedralFace::ff( const cvector_t q, const bool sym_Ci ) const
...
@@ -302,7 +302,7 @@ complex_t PolyhedralFace::ff( const cvector_t q, const bool sym_Ci ) const
decompose_q
(
q
,
qperp
,
qpa
);
decompose_q
(
q
,
qperp
,
qpa
);
double
qpa_red
=
m_radius_2d
*
qpa
.
mag
();
double
qpa_red
=
m_radius_2d
*
qpa
.
mag
();
complex_t
qr_perp
=
qperp
*
m_rperp
;
complex_t
qr_perp
=
qperp
*
m_rperp
;
complex_t
ff0
=
(
sym_Ci
?
2.
*
I
*
sin
(
qr_perp
)
:
exp
(
I
*
qr_perp
))
*
m_area
;
complex_t
ff0
=
(
sym_Ci
?
2.
*
I
*
sin
(
qr_perp
)
:
exp
_I
(
qr_perp
))
*
m_area
;
if
(
qpa_red
==
0
)
{
if
(
qpa_red
==
0
)
{
return
ff0
;
return
ff0
;
}
else
if
(
qpa_red
<
qpa_limit_series
&&
!
sym_S2
)
{
}
else
if
(
qpa_red
<
qpa_limit_series
&&
!
sym_S2
)
{
...
@@ -310,10 +310,10 @@ complex_t PolyhedralFace::ff( const cvector_t q, const bool sym_Ci ) const
...
@@ -310,10 +310,10 @@ complex_t PolyhedralFace::ff( const cvector_t q, const bool sym_Ci ) const
complex_t
fac_even
;
complex_t
fac_even
;
complex_t
fac_odd
;
complex_t
fac_odd
;
if
(
sym_Ci
)
{
if
(
sym_Ci
)
{
fac_even
=
2.
*
I
*
sin
(
qr_perp
);
fac_even
=
2.
*
mul_I
(
sin
(
qr_perp
)
)
;
fac_odd
=
2.
*
cos
(
qr_perp
);
fac_odd
=
2.
*
cos
(
qr_perp
);
}
else
{
}
else
{
fac_even
=
exp
(
I
*
qr_perp
);
fac_even
=
exp
_I
(
qr_perp
);
fac_odd
=
fac_even
;
fac_odd
=
fac_even
;
}
}
return
ff0
+
expansion
(
fac_even
,
fac_odd
,
qpa
,
std
::
abs
(
ff0
)
);
return
ff0
+
expansion
(
fac_even
,
fac_odd
,
qpa
,
std
::
abs
(
ff0
)
);
...
@@ -321,14 +321,14 @@ complex_t PolyhedralFace::ff( const cvector_t q, const bool sym_Ci ) const
...
@@ -321,14 +321,14 @@ complex_t PolyhedralFace::ff( const cvector_t q, const bool sym_Ci ) const
// direct evaluation of analytic formula
// direct evaluation of analytic formula
complex_t
prefac
;
complex_t
prefac
;
if
(
sym_S2
)
if
(
sym_S2
)
prefac
=
sym_Ci
?
-
8.
*
sin
(
qr_perp
)
:
4.
*
I
*
exp
(
I
*
qr_perp
);
prefac
=
sym_Ci
?
-
8.
*
sin
(
qr_perp
)
:
4.
*
mul_I
(
exp_I
(
qr_perp
)
)
;
else
else
prefac
=
sym_Ci
?
4.
:
2.
*
exp
(
I
*
qr_perp
);
prefac
=
sym_Ci
?
4.
:
2.
*
exp
_I
(
qr_perp
);
#ifdef POLYHEDRAL_DIAGNOSTIC
#ifdef POLYHEDRAL_DIAGNOSTIC
if
(
diagnosis
.
debmsg
>=
2
)
if
(
diagnosis
.
debmsg
>=
2
)
std
::
cout
<<
" qrperp="
<<
qr_perp
<<
" => prefac="
<<
prefac
<<
"
\n
"
;
std
::
cout
<<
" qrperp="
<<
qr_perp
<<
" => prefac="
<<
prefac
<<
"
\n
"
;
#endif
#endif
return
prefac
*
edge_sum_ff
(
q
,
qpa
,
sym_Ci
)
/
(
I
*
qpa
.
mag2
()
);
return
prefac
*
edge_sum_ff
(
q
,
qpa
,
sym_Ci
)
/
mul_I
(
qpa
.
mag2
()
);
}
}
}
}
...
@@ -424,7 +424,7 @@ void FormFactorPolyhedron::setPolyhedron(
...
@@ -424,7 +424,7 @@ void FormFactorPolyhedron::setPolyhedron(
complex_t
FormFactorPolyhedron
::
evaluate_for_q
(
const
cvector_t
q
)
const
complex_t
FormFactorPolyhedron
::
evaluate_for_q
(
const
cvector_t
q
)
const
{
{
return
exp
(
-
I
*
m_z_origin
*
q
.
z
())
*
evaluate_centered
(
q
);
return
exp
_I
(
-
m_z_origin
*
q
.
z
())
*
evaluate_centered
(
q
);
}
}
//! Returns the form factor F(q) of this polyhedron, with origin at z=0.
//! Returns the form factor F(q) of this polyhedron, with origin at z=0.
...
@@ -464,7 +464,7 @@ complex_t FormFactorPolyhedron::evaluate_centered( const cvector_t q ) const
...
@@ -464,7 +464,7 @@ complex_t FormFactorPolyhedron::evaluate_centered( const cvector_t q ) const
count_return_condition
=
0
;
count_return_condition
=
0
;
if
(
count_return_condition
>
2
)
if
(
count_return_condition
>
2
)
return
m_volume
+
sum
;
// regular exit
return
m_volume
+
sum
;
// regular exit
n_fac
*=
(
m_sym_Ci
?
-
1
:
I
);
n_fac
=
m_sym_Ci
?
-
n_fac
:
mul_I
(
n_fac
);
}
}
#ifdef POLYHEDRAL_DIAGNOSTIC
#ifdef POLYHEDRAL_DIAGNOSTIC
if
(
!
diagnosis
.
request_convergence
)
if
(
!
diagnosis
.
request_convergence
)
...
@@ -529,7 +529,7 @@ complex_t FormFactorPolygonalPrism::evaluate_for_q( const cvector_t q ) const
...
@@ -529,7 +529,7 @@ complex_t FormFactorPolygonalPrism::evaluate_for_q( const cvector_t q ) const
diagnosis
.
nExpandedFaces
=
0
;
diagnosis
.
nExpandedFaces
=
0
;
#endif
#endif
const
cvector_t
qxy
(
q
.
x
(),
q
.
y
(),
0.
);
const
cvector_t
qxy
(
q
.
x
(),
q
.
y
(),
0.
);
return
m_height
*
exp
(
I
*
(
m_height
/
2
)
*
q
.
z
())
*
MathFunctions
::
sinc
(
m_height
/
2
*
q
.
z
())
*
return
m_height
*
exp
_I
(
m_height
/
2
*
q
.
z
())
*
MathFunctions
::
sinc
(
m_height
/
2
*
q
.
z
())
*
m_base
->
ff_2D
(
qxy
);
m_base
->
ff_2D
(
qxy
);
}
}
...
...
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