forked from LupoLab/Luna.jl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbasic_modeAvg_field_noTHG.jl
46 lines (33 loc) · 1.16 KB
/
basic_modeAvg_field_noTHG.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using Luna
a = 13e-6
gas = :Ar
pres = 5
flength = 15e-2
τfwhm = 30e-15
λ0 = 800e-9
energy = 1e-6
grid = Grid.RealGrid(flength, λ0, (160e-9, 3000e-9), 1e-12)
m = Capillary.MarcatiliMode(a, gas, pres, loss=false)
aeff = let m=m
z -> Modes.Aeff(m, z=z)
end
energyfun, energyfunω = Fields.energyfuncs(grid)
densityfun = let dens0=PhysData.density(gas, pres)
z -> dens0
end
linop, βfun!, frame_vel, αfun = LinearOps.make_const_linop(grid, m, λ0)
ionpot = PhysData.ionisation_potential(gas)
ionrate = Ionisation.ionrate_fun!_ADK(ionpot)
responses = (Nonlinear.Kerr_field_nothg(PhysData.γ3_gas(gas),length(grid.to)),
Nonlinear.PlasmaCumtrapz(grid.to, grid.to, ionrate, ionpot))
inputs = Fields.GaussField(λ0=λ0, τfwhm=τfwhm, energy=energy)
Eω, transform, FT = Luna.setup(grid, densityfun, responses, inputs, βfun!, aeff)
statsfun = Stats.default(grid, Eω, m, linop, transform; gas=gas, windows=((150e-9, 300e-9),))
output = Output.MemoryOutput(0, grid.zmax, 201, statsfun)
Luna.run(Eω, grid, linop, transform, FT, output)
##
Plotting.pygui(true)
Plotting.stats(output)
Plotting.prop_2D(output)
Plotting.time_1D(output)
Plotting.spec_1D(output)