Skip to content

Commit 79cbd92

Browse files
authored
Merge pull request #226 from byuflowlab/derivatives
Derivatives
2 parents 3d1bcee + 50af0d1 commit 79cbd92

27 files changed

+1824
-267
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ docs/site/
55
.DS_Store
66
*Manifest.toml
77
*-example/
8+
*.h5
9+
*.bson
10+
*.xmf
11+
*.vts
12+
*.vtp
13+
*.vtm
14+
*.pvd
815

916
examples/rotornoise/singlerotor-*
1017
docs/resources/images/sponsors/*.png

Project.toml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,35 @@
11
name = "FLOWUnsteady"
22
uuid = "b491798d-ac6e-455f-a27c-49c10bb0a666"
33
authors = ["Eduardo J. Alvarez <Edo.AlvarezR@gmail.com> and contributors"]
4-
version = "3.3.2"
4+
version = "3.4.0"
55

66
[deps]
7-
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
8-
Dierckx = "39dd38d3-220a-591b-8e3c-4c3a8c710a94"
7+
AirfoilPrep = "008c61af-3522-4e14-81c5-9301d18a9f66"
8+
BPM = "f91b385c-3ede-44c9-92c8-2a04f762ef2f"
99
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
10-
JLD = "4138dd39-2aa7-5051-a626-17a0bb65d9c8"
11-
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
12-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
13-
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
1410
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
15-
GeometricTools = "83792f5e-c6a1-11e8-2e0a-93511f02ae5f"
16-
FLOWVPM = "6e19019d-7c31-4940-9d16-c3f15dfe6020"
17-
FLOWVLM = "1a3ff0be-0410-4572-aa62-b496bdd1f33b"
11+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
12+
FLOWMath = "6cb5d3fb-0fe8-4cc2-bd89-9fe0b19a99d3"
1813
FLOWNoise = "d27480ee-285d-533b-ae3d-5018956ae0bc"
19-
BPM = "f91b385c-3ede-44c9-92c8-2a04f762ef2f"
14+
FLOWVLM = "1a3ff0be-0410-4572-aa62-b496bdd1f33b"
15+
FLOWVPM = "6e19019d-7c31-4940-9d16-c3f15dfe6020"
16+
GeometricTools = "83792f5e-c6a1-11e8-2e0a-93511f02ae5f"
17+
JLD = "4138dd39-2aa7-5051-a626-17a0bb65d9c8"
18+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
19+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
20+
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
21+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2022
VSPGeom = "9b3f6a95-fce2-4bc5-94a2-f99b39986ea6"
2123

2224
[compat]
25+
FLOWVPM = "4.0"
26+
GeometricTools = "2.3"
2327
julia = "1.6"
24-
GeometricTools = "2.2"
25-
FLOWVPM = "3.0"
26-
FLOWVLM = "2.1.3"
27-
FLOWNoise = "2.3.3"
28-
BPM = "2.0.1"
2928

3029
[extras]
31-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
32-
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
3330
FLOWVPM = "6e19019d-7c31-4940-9d16-c3f15dfe6020"
31+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
32+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3433

3534
[targets]
3635
test = ["Test", "Printf", "FLOWVPM"]

docs/src/examples/rotorhover-fdom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Oaxis = gt.rotation_matrix2(0, 0, AOA) # Orientation of grid
6868

6969
# VPM settings
7070
maxparticles = Int(1.0e6 + nnodes) # Maximum number of particles
71-
fmm = vpm.FMM(; p=4, ncrit=50, theta=0.4, phi=0.3) # FMM parameters (decrease phi to reduce FMM noise)
71+
fmm = vpm.FMM(; p=4, ncrit=50, theta=0.4) # FMM parameters
7272
scale_sigma = 1.00 # Shrink smoothing radii by this factor
7373
f_sigma = 0.5 # Smoothing of node particles as sigma = f_sigma*meansigma
7474

0 commit comments

Comments
 (0)