Skip to content

Commit

Permalink
Update PropertyUnits.h
Browse files Browse the repository at this point in the history
  • Loading branch information
FEA-eng authored Mar 15, 2024
1 parent 3831915 commit 97ffc0b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/App/PropertyUnits.h
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,19 @@ class AppExport PropertyMass: public PropertyQuantity
~PropertyMass() override = default;
};

/** Moment property
* This is a property for representing moment. It is basically a float
* property. On the Gui it has a quantity like N*m.
*/
class AppExport PropertyMoment: public PropertyQuantity
{
TYPESYSTEM_HEADER_WITH_OVERRIDE();

public:
PropertyMoment();
~PropertyMoment() override = default;
};

/** Pressure property
* This is a property for representing pressure. It basically a float
* property. On the Gui it has a quantity like Pa.
Expand Down

0 comments on commit 97ffc0b

Please sign in to comment.