Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fluiddyn_papers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fluiddyn
fluiddyn_papers
Commits
036ff2425c1a
Commit
036ff2425c1a
authored
2 years ago
by
vlabarre
Browse files
Options
Downloads
Patches
Plain Diff
remove script save_ratio_EA_EK_vs_Fh.py
parent
2177ed75cf53
No related branches found
No related tags found
1 merge request
!6
2022strat_turb_polo!
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
2022strat_turb_polo/py/save_ratio_EA_EK_vs_Fh.py
+0
-37
0 additions, 37 deletions
2022strat_turb_polo/py/save_ratio_EA_EK_vs_Fh.py
with
0 additions
and
37 deletions
2022strat_turb_polo/py/save_ratio_EA_EK_vs_Fh.py
deleted
100644 → 0
+
0
−
37
View file @
2177ed75
import
numpy
as
np
import
matplotlib.pyplot
as
plt
from
util
import
save_fig
,
plot
,
Fh_limit
from
util_dataframe
import
df
tmp
=
df
[
df
.
Re
>
2000
].
copy
()
tmp
[
"
E_A/E_K
"
]
=
tmp
.
EA
/
(
tmp
.
EKh
)
ax
=
plot
(
tmp
,
"
Fh
"
,
"
E_A/E_K
"
,
c
=
np
.
log10
(
tmp
[
"
R2
"
]),
vmin
=
0.5
,
vmax
=
2
,
logy
=
True
)
ax
.
set_xlabel
(
"
$F_h$
"
,
fontsize
=
12
)
ax
.
set_ylabel
(
r
"
$E_A / E_K$
"
,
fontsize
=
12
)
ax
.
axvline
(
Fh_limit
,
linestyle
=
"
:
"
)
ax
.
axvline
(
1.0
,
linestyle
=
"
:
"
)
xs
=
np
.
linspace
(
1.5e-1
,
5e-1
,
4
)
ax
.
plot
(
xs
,
5e-2
*
xs
**-
1
)
ax
.
text
(
0.16
,
0.12
,
"
${F_h}^{-1}$
"
)
xs
=
np
.
linspace
(
6e-1
,
4
,
4
)
ax
.
plot
(
xs
,
5e-2
*
xs
**-
2
)
ax
.
text
(
1.2
,
0.05
,
"
${F_h}^{-2}$
"
)
fig
=
ax
.
figure
fig
.
text
(
0.84
,
0.07
,
r
"
$\log_{10}(\mathcal{R}_2)$
"
,
fontsize
=
12
)
fig
.
tight_layout
()
save_fig
(
fig
,
"
fig_ratio_EA_EK_vs_Fh.png
"
)
if
__name__
==
"
__main__
"
:
plt
.
show
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment