adding a figure!

This commit is contained in:
2021-01-05 19:25:41 -06:00
parent 311b82deac
commit 5d9580ac83

29
scripts/fig1.wls Normal file
View File

@@ -0,0 +1,29 @@
(* :Author: Deepak *)
(* :Date: 2021-01-04 *)
Needs["owenScalapinoFreeEnergy`"];
(* Populates the figures directory as ../figures *)
figuresDirectory = FileNameJoin[{
ParentDirectory[
DirectoryName[
FileNameJoin[{
Directory[],
$ScriptCommandLine[[1]]
}]
]
], "figures"
}];
figure[filename_] := FileNameJoin[{figuresDirectory, filename}];
label = AxesLabel -> {"\[CapitalDelta]", "Fs(\[CapitalDelta])"};
plot1 = ListPlot[{
(* Usage for Fs *)
(* Fs[delta, temp, mustar, debyeFreq, N0, V0] *)
ParallelTable[{d, Fs[d, .05, 0, 100, 1, .2]}, {d, .05, 2, .1}],
ParallelTable[{d, Fs[d, .05, .5, 100, 1, .2]}, {d, .05, 2, .1}],
ParallelTable[{d, Fs[d, .05, 1, 100, 1, .2]}, {d, .05, 2, .1}]
}, ImageSize->Large, PlotLegends->{"mu = 0", "mu = .5", "mu = 1"}, label];
Export[figure["fig1.jpg"], plot1, ImageResolution -> 1200];