-
Notifications
You must be signed in to change notification settings - Fork 8
/
content.txt
95 lines (95 loc) · 4.35 KB
/
content.txt
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
RAINFLOW
| CMakeLists.txt Makefile (CMake)
| coan-args-minimal.in Input arguments file for coan invocation
| coan_invoke-minimal.bat Invoke coan (cmd shell)
| coan_invoke-minimal.sh Invoke coan (linux shell)
| content.txt This file
| LICENSE License information
| README.MD Readme
|
+---src
| |
| | CMakeLists.txt Makefile (CMake)
| |
| +---3rd_party
| | +---greatest A testing system for C, contained in 1 header file.
| | \---unifdef A tool remove preprocessor conditionals from code.
| |
| +---lib
| | | CMakeLists.txt Makefile (CMake)
| | | config.h Configuration file (Rainflow)
| | | config.h.in Configuration file (Input file for CMake)
| | | rainflow.h Header file for rainflow.c
| | | rainflow.hpp Header file for C++ interface
| | | rainflow.c Rainflow main routines
| | |
| | \---minimal
| | | create_minimal_sources.bat Batch generating `rainflow.c`and `rainflow.h`
| | | readme.md Readme
| | | rainflow.c Generated source code
| | | rainflow.h Generated source code
| | |
| | \---cfg
| | \ unifdef_defile.h
| |
| +---matlab
| | | CMakeLists.txt Makefile (CMake)
| | | rfc.c MATLAB(R) wrapper module `rfc`
| | | make.m Build rfc.m
| | \ validate.m Examples an checks
| |
| +---python
| | __init.py__ Init
| | CMakeLists.txt Makefile (CMake)
| | LICENSE License information
| | MANIFEST.in Manifest file (input file)
| | pyproject.toml TOML file for build requirements
| | README.md Readme
| | requirements.txt Requirements of the rfcnt module
| | rfcnt.pyi rfcnt interface file
| | run_examples.py Python script executes examples from .tests.examples
| | run_tests.py Python script for unit testing
| | setup.py Setup (build, install, deploy)
| | utils.py Utility module
| | version.py Version file
| |
| +---_ext
| | \ <prebuilds> Prebuild extensions for various numpy versions
| |
| +---cmake
| | | numpy_get_include.py Python script returning NumPy include directories
| | \ rfcnt_target_functions.cmake Some helper functions for create build targets
| |
| +---lib
| | | rainflow.h (Generated) copies of /src/lib
| | | rainflow.hpp ...
| | | config.h ...
| | \ rainflow.c ...
| |
| +---notebooks
| | | example_damage_history.ipynb Example showing damage growth over time
| | | example_damage_history.png Output from example_damage_history.ipynb
| | \ jupyter_screenshot.png Output from .tests.examples.example_1()
| |
| +---src
| | | numpy_arrayobject.h Include file generated by `numpy_get_include.py`
| | \ rfcnt.cpp Python wrapper module `rfcnt`
| |
| \---tests
| | __init.py__ Init
| | test_rfcnt.py Unit Test
| | examples.py Examples
| | long_series.csv Time series for unit test and examples
| \ test_rfcnt.py Demonstrator and test (Python)
|
+---test
| | CMakeLists.txt Makefile (CMake)
| | long_series.h Header (defining long series data length)
| | long_series.c Time series for tests
| | long_series.csv Time series for tests as CSV file
| | rfc_test.c Main program (windows console application) for comprehensive unit test, uses "greatest"
| | rfc_wrapper_advanced.cpp Example using rainflow in CPP context applying an advanced wrapper
| \ rfc_wrapper_simple.cpp Example using rainflow in CPP context applying a simple wrapper
|
+---tools
\ where_to_get_coan.txt Link