forked from a-ma72/rainflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.txt
64 lines (64 loc) · 2.83 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
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
|
+---python
| | __init.py__ Init
| | run_examples.py Python script executes examples from .tests.examples
| | run_tests.py Python script for unit testing
| | utils.py Utility module
| | setup.py Setup (build, install, deploy)
| | CMakeLists.txt CMake makefile
| | LICENSE License information
| | MANIFEST.in Manifest file
| | README.md Readme
| | pyproject.toml TOML file for build requirements
| | jupyter_screenshot.png Output from .tests.examples.example_1()
| | requirements.txt Requirements of the rfcnt module
| |
| +---_ext
| | <prebuilds> Prebuild extensions for various numpy versions
| |
| +---src
| | rainflow.h Header file for rainflow.c
| | rainflow.hpp Header file for C++ interface
| | rainflow.c Rainflow main routines
| | rfcnt.cpp Python module `rfcnt`
| |
| \---tests
| __init.py__ Init
| test_rfcnt.py Unit Test
| examples.py Examples
| long_series.csv Time series for unit test and examples
|
+---src
| rainflow.h Header file for rainflow.c
| rainflow.hpp Header file for C++ interface
| rainflow.c Rainflow main routines
| config.h.in Configuration file (Input file for CMake)
| config.h Configuration file (Rainflow)
|
+---matlab
| make.m Build rfc.m
| validate.m Examples an checks
|
+---tools
| where_to_get_coan.txt Link
|
+---greatest
| greatest.h 3rd party tool for automatic testing of C-code
| LICENSE License information
| README.md Readme
|
\---test
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_simple.cpp Example using rainflow in CPP context applying a simple wrapper
rfc_wrapper_advanced.cpp Example using rainflow in CPP context applying an advanced wrapper