-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
//! |OME|. | ||
pub mod unpolarized; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
//! The unpolarized |OME| for space-like and time-like kinematics. | ||
pub mod spacelike; |
12 changes: 12 additions & 0 deletions
12
crates/ekore/src/operator_matrix_elements/unpolarized/spacelike.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
//! The unpolarized, space-like |OME| at various couplings power. | ||
pub mod as1; | ||
|
||
// Compute the tower of the singlet |OME|. | ||
// pub fn A_singlet() -> Vec<Complex<f64>>{ | ||
|
||
// } | ||
|
||
// Compute the tower of the non-singlet |OME|. | ||
// pub fn A_non_singlet() -> Vec<Complex<f64>>{ | ||
|
||
// } |
25 changes: 25 additions & 0 deletions
25
crates/ekore/src/operator_matrix_elements/unpolarized/spacelike/as1.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//! NLO QCD | ||
use num::complex::Complex; | ||
|
||
use crate::constants::{CA, CF, TR}; | ||
use crate::harmonics::cache::{Cache, K}; | ||
|
||
/// Compute heavy-heavy |OME| :math:`A_{HH}^{(1)}` | ||
/// | ||
/// Defined in Eq. () of . | ||
pub fn A_hh(c: &mut Cache, _nf: u8, L: f64) -> Complex<f64> { | ||
let N = c.n; | ||
let S1m = c.get(K::S1) - 1. / N; | ||
let S2m = c.get(K::S2) - 1. / N.powu(2); | ||
let ahh_l = (2. + N - 3. * N.powu(2)) / (N * (1. + N)) + 4. * S1m; | ||
let ahh = 2. | ||
* (2. + 5. * N + N.powu(2) | ||
- 6. * N.powu(3) | ||
- 2. * N.powu(4) | ||
- 2. * N * (-1. - 2. * N + N.powu(3)) * S1m) | ||
/ (N * (1. + N)).powu(2) | ||
+ 4. * (S1m.powu(2) + S2m); | ||
|
||
-CF * (ahh_l * L + ahh) | ||
} |