Skip to content

Commit

Permalink
DF structure
Browse files Browse the repository at this point in the history
  • Loading branch information
KerwannTEP committed Sep 3, 2024
1 parent 02075b4 commit c4edcc3
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions src/Analytic/Flattened/kuzminkutuzov.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

# a, c, G, M in potential

struct KuzminSpheroid{modelT<:KuzminPotentials} <: KuzminPotentialDF
potential::modelT # potential model
end




"""
KuzminDistribution(ELz::Tuple{Float64,Float64},df::MestelDisc)
Kuzmin-Kutuzov ddistribution function.
"""
function KuzminDistribution(ELz::Tuple{Float64,Float64}, df::KuzminSpheroid)::Float64

E,Lz = ELz
a = df.potential.a
c = df.potential.c
G = df.potential.G
M = df.potential.M

# todo

end

function DFDE(ELz::Tuple{Float64,Float64}, df::KuzminSpheroid)::Float64

E,Lz = ELz
a = df.potential.a
c = df.potential.c
G = df.potential.G
M = df.potential.M

# todo

end

function DFDLz(ELz::Tuple{Float64,Float64}, df::KuzminSpheroid)::Float64

E,Lz = ELz
a = df.potential.a
c = df.potential.c
G = df.potential.G
M = df.potential.M

# todo

end

0 comments on commit c4edcc3

Please sign in to comment.