-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
78 lines (72 loc) · 2.5 KB
/
mkdocs.yml
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
site_name: acoustipy
theme: #readthedocs
name: material
features:
- content.code.copy
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
members: true
filters: []
allow_inspection: true
show_root_toc_entry: false
members_order: source
show_root_heading: false
docstring_style: google
show_symbol_type_heading: true
nav:
- Quick Start: README.md
- API Reference:
- AcousticTMM.md
- AcousticID.md
- AcoustiBase.md
- Examples:
- Transfer Matrix / Database Examples:
- Multilayer Structure: Examples/multilayer_structure.md
- Impedance Tube: Examples/impedance_tube.md
- Saving Layers: Examples/layer_to_database.md
- Loading Layers: Examples/layers_from_database.md
- Saving and Loading Structures: Examples/structure_to_database.md
- Material Characterization Examples:
- Inverse Method: Examples/Inverse.md
- Indirect Method: Examples/Indirect.md
- Hybrid Method: Examples/Hybrid.md
- Theory:
- AcousticTMM:
- Overview: Theory/TMM_Theory_General.md
- Porous Material Models:
- Delaney-Bazley Model: Theory/DB_Model.md
- Delaney-Bazley-Miki Model: Theory/DBM_Model.md
- Johnson-Champoux-Allard Model: Theory/JCA_Model.md
- Johnson-Champoux-Allard-Lafarge Model: Theory/JCAL_Model.md
- Johnson-Champoux-Allard-Pride-Lafarge Model: Theory/JCAPL_Model.md
- Horoshenkov Model: Theory/Horoshenkov_Model.md
- Biot-Limp Model: Theory/Biot_Limp_Model.md
- Biot-Rigid Model: Theory/Biot_Rigid_Model.md
- Resistive Screen Model: Theory/Resistive_Screen_Model.md
- Microperforates:
- MAA Model: Theory/MAA_MPP_Model.md
- Equivalent Fluid Model: Theory/EF_MPP_Model.md
- Transfer Matrices: Theory/TMM_Theory.md
- Acoustic Indicators:
- Reflection: Theory/Reflection_Theory.md
- Absorption: Theory/Absorption_Theory.md
- Transmission Loss: Theory/Transmission_Theory.md