|
28 | 28 | """ |
29 | 29 | Open(; p_int, name) |
30 | 30 |
|
31 | | -Simple hydraulic port for use in multiport components like FlowDivider. |
| 31 | +Provides an "open" boundary condition for a hydraulic port such that mass flow `dm` is non-zero. This is opposite from an un-connected hydraulic port or the `Cap` boundary component which sets the mass flow `dm` to zero. |
32 | 32 |
|
33 | 33 | # Parameters: |
34 | 34 | - `p_int`: [Pa] initial pressure (set by `p_int` argument) |
@@ -729,6 +729,8 @@ Spool valve with `x` valve opening input as mechanical flange port and `d` diame |
729 | 729 | - `port_a`: hydraulic port |
730 | 730 | - `port_b`: hydraulic port |
731 | 731 | - `flange`: mechanical translational port |
| 732 | +
|
| 733 | +See [`Valve`](@ref) for more information. |
732 | 734 | """ |
733 | 735 | @component function SpoolValve(reversible = false; p_a_int, p_b_int, x_int, Cd, d, name) |
734 | 736 | pars = @parameters begin |
@@ -765,15 +767,15 @@ end |
765 | 767 | """ |
766 | 768 | SpoolValve2Way(reversible = false; p_s_int, p_a_int, p_b_int, p_r_int, m, g, x_int, Cd, d, name) |
767 | 769 |
|
768 | | -2-ways spool valve with 4 ports and mass. Fluid flow direction S → A and B → R. See `SpoolValve` for more information. |
| 770 | +2-ways spool valve with 4 ports and spool mass. Fluid flow direction S → A and B → R when `x` is positive and S → B and A → R when `x` is negative. |
769 | 771 |
|
770 | 772 | # Parameters: |
771 | 773 | - `p_s_int`: [Pa] initial pressure for `port_s` |
772 | 774 | - `p_a_int`: [Pa] initial pressure for `port_a` |
773 | 775 | - `p_b_int`: [Pa] initial pressure for `port_b` |
774 | 776 | - `p_r_int`: [Pa] initial pressure for `port_r` |
775 | | -- `m`: [kg] mass of the body |
776 | | -- `g`: [m/s²] gravity field acting on the mass, positive value acts in the positive direction |
| 777 | +- `m`: [kg] mass of the spool |
| 778 | +- `g`: [m/s²] gravity field acting on the spool, positive value acts in the positive direction |
777 | 779 | - `x_int`: [m] initial valve opening |
778 | 780 | - `d`: [m] orifice diameter |
779 | 781 | - `Cd`: discharge coefficient flowing from `s → a` and `b → r` |
|
784 | 786 | - `port_b`: hydraulic port |
785 | 787 | - `port_r`: hydraulic port |
786 | 788 | - `flange`: mechanical translational port |
| 789 | +
|
| 790 | +See [`SpoolValve`](@ref) for more information. |
787 | 791 | """ |
788 | 792 | @component function SpoolValve2Way(reversible = false; p_s_int, p_a_int, p_b_int, p_r_int, |
789 | 793 | m, g, x_int, Cd, d, name) |
|
0 commit comments