Skip to content

Commit

Permalink
Move LXCat datasets to datasets/
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartosz Chaber committed Feb 24, 2021
1 parent f0a9823 commit 6451a2a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Chemistry/src/biagi71-Ar.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Chemistry: lxcatread, CrossSection
σ₁ = lxcatread("Biagi-7.1.txt", "PROCESS: E + Ar -> E + Ar, Elastic") |> CrossSection
σ₂ = lxcatread("Biagi-7.1.txt", "PROCESS: E + Ar -> E + Ar*(11.55eV), Excitation") |> CrossSection
σ₃ = lxcatread("Biagi-7.1.txt", "PROCESS: E + Ar -> E + Ar*(13.00eV), Excitation") |> CrossSection
σ₄ = lxcatread("Biagi-7.1.txt", "PROCESS: E + Ar -> E + E + Ar+, Ionization") |> CrossSection
σ₁ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + Ar -> E + Ar, Elastic") |> CrossSection
σ₂ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + Ar -> E + Ar*(11.55eV), Excitation") |> CrossSection
σ₃ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + Ar -> E + Ar*(13.00eV), Excitation") |> CrossSection
σ₄ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + Ar -> E + E + Ar+, Ionization") |> CrossSection
8 changes: 4 additions & 4 deletions Chemistry/src/biagi71-He.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Chemistry: lxcatread, CrossSection
σ₁ = lxcatread("Biagi-7.1.txt", "PROCESS: E + He -> E + He, Elastic") |> CrossSection
σ₂ = lxcatread("Biagi-7.1.txt", "PROCESS: E + He -> E + He(Triplet)(19.82eV)") |> CrossSection
σ₃ = lxcatread("Biagi-7.1.txt", "PROCESS: E + He -> E + He(Singlet)(20.61eV)") |> CrossSection
σ₄ = lxcatread("Biagi-7.1.txt", "PROCESS: E + He -> E + E + He+, Ionization") |> CrossSection
σ₁ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + He -> E + He, Elastic") |> CrossSection
σ₂ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + He -> E + He(Triplet)(19.82eV)") |> CrossSection
σ₃ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + He -> E + He(Singlet)(20.61eV)") |> CrossSection
σ₄ = lxcatread("datasets/Biagi-7.1.txt", "PROCESS: E + He -> E + E + He+, Ionization") |> CrossSection
4 changes: 2 additions & 2 deletions Chemistry/src/phelps-He.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import Chemistry: lxcatread, CrossSection
σₑ₁ = lxcatread("Phelps.txt", "PROCESS: He+ + He -> , Isotropic") |> Chemistry.CrossSection
σₑ₂ = lxcatread("Phelps.txt", "PROCESS: He+ + He -> , Backscat") |> Chemistry.CrossSection
σₑ₁ = lxcatread("datasets/Phelps.txt", "PROCESS: He+ + He -> , Isotropic") |> Chemistry.CrossSection
σₑ₂ = lxcatread("datasets/Phelps.txt", "PROCESS: He+ + He -> , Backscat") |> Chemistry.CrossSection

0 comments on commit 6451a2a

Please sign in to comment.