Skip to content

Commit 8299fb1

Browse files
author
Renaud Gaudron
committed
Version 1.3
1 parent 9f6e747 commit 8299fb1

184 files changed

Lines changed: 17198 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTING.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
OSCILOS is being developed for research. Please [join us](http://www.oscilos.com/)!.
2+
3+
## Git and Pull requests
4+
* Contributions are welcome. For outside users, they can be submitted with GitHub pull request, and will be reviewed and accepted by the team. The project uses the Fork & Pull model; for more details see [here](https://help.github.com/articles/using-pull-requests).
5+
* Internal developers have write access to the branches, and can merge changes themselves. They do not need to make Pull requests.
6+
* The project uses the [GitFlow branching model](http://nvie.com/posts/a-successful-git-branching-model/). As such please make a new branch for every feature you are working on.
7+
* Internal developers should merge Bugfixes and Hotfixes to `master-private` and `develop`.
8+
* After a release is made to `master-private`, or a Bugfix/Hotfix is implemented, changes in `master-private` should be merged in the public repo. `master` branch.
9+
* The latest changes available to users outside of MorgansLab are in the public repo. `master` branch. To have access to newer bug fixes or become a collaborator, contact the repo. admin.
10+
* Make sure your commit messages are clear. The first line should be a summary of the commit, following lines should contain details about the mentioned changes.
11+
* Please avoid using re-basing and fast forward merges.
12+
13+
## Coding style and version numbering
14+
* Use a lot of comments; more is better than not enough.
15+
* Indent your code using the Matlab automated indent feature.
16+
* When incrementing the version number, please stick to the [Semantic Versioning Standards](http://semver.org/)
17+
18+
## Documentation
19+
* The documentation can be found in the [docs](docs) folder.
20+
21+
## Logging issues and fixing issues
22+
* Please log any issues you find [here](https://github.com/MorgansLab/OSCILOS-Long-1-3/issues), and don't forget to say what version of Matlab you are using, and what OS.
23+
* Label your issue as a `bug`, `enhancement` etc.
24+
* Developers working on an issue should assign themselves the issue before starting any work.
25+
* Corrections for `bug` issues should be done using GitFlow Hotfix or Bugfix, or in a release branch.
26+
* When committing to correct an issue, use the wording `Fixes #1` or `Resolves #1` or `Closes #1`. Doing this will automatically [close issue Number 1, and link to the relevant commit](https://help.github.com/articles/closing-issues-via-commit-messages/)
27+
* Use the template below when logging issues:
28+
29+
````
30+
*Matlab Version : r2014a*
31+
*OS : Windows 8.1*
32+
*Commit: 86f0a46d3e01461926622151eb9fff689c677321*
33+
34+
## Observed behaviour
35+
When selecting a temperature ratio across the flame of 1 (not a plausible configuration, but hey) the plotting shows error
36+
37+
### Error message
38+
39+
\`\`\`\`
40+
Error using set
41+
Bad property value found.
42+
Object Name: axes
43+
Property Name: 'YLim'
44+
Value must be a 2 element vector.
45+
46+
Error in GUI_INI_TP>Fcn_GUI_INI_TP_PLOT (line 1250)
47+
set(hAxes1,'ylim',[ymin ymax])
48+
49+
Error in GUI_INI_TP>pb_Plot_Callback (line 480)
50+
Fcn_GUI_INI_TP_PLOT(hObject)
51+
52+
Error in gui_mainfcn (line 95)
53+
feval(varargin{:});
54+
55+
Error in GUI_INI_TP (line 42)
56+
gui_mainfcn(gui_State, varargin{:});
57+
58+
Error in
59+
@(hObject,eventdata)GUI_INI_TP('pb_Plot_Callback',hObject,eventdata,guidata(hObject))
60+
61+
62+
Error using waitfor
63+
Error while evaluating uicontrol Callback
64+
\`\`\`\`
65+
66+
## Expected behaviour
67+
Ylim should be adjusted when the plot is a horizontal line
68+
````
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
14 uid=530954
2+
26 atime=1418408752.08172
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
14 uid=530954
2+
26 atime=1418408752.08172
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
14 uid=530954
2+
26 atime=1418408752.08172

LICENSE.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Copyright (c) 2014, Imperial College London
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5+
6+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7+
8+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9+
10+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
11+
12+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

OSCILOS_long.fig

7.88 KB
Binary file not shown.

0 commit comments

Comments
 (0)