Skip to content

Commit

Permalink
Fixed docstrings and moving several unncessary methods into class
Browse files Browse the repository at this point in the history
constructors instead.
  • Loading branch information
ssun30 authored and speth committed May 11, 2023
1 parent d92474e commit 0fbf09b
Show file tree
Hide file tree
Showing 69 changed files with 549 additions and 603 deletions.
8 changes: 4 additions & 4 deletions interfaces/matlab_experimental/1D/AxisymmetricFlow.m
@@ -1,7 +1,7 @@
classdef AxisymmetricFlow < Domain1D
% Create an axisymmetric flow domain.
% Create an axisymmetric flow domain. ::
%
% m = AxisymmetricFlow(gas, id)
% >> m = AxisymmetricFlow(gas, id)
%
% :param gas:
% Instance of class :mat:class:`Solution`
Expand All @@ -13,10 +13,10 @@

methods

% Constructor
function m = AxisymmetricFlow(gas, id)
% Constructor

m = m@Domain1D('StagnationFlow', gas);
m@Domain1D('StagnationFlow', gas);

if nargin == 1
m.setID('flow');
Expand Down

0 comments on commit 0fbf09b

Please sign in to comment.