Background. (Equilibrium)
Equilibrium is established by the exchange of energy, volume, or particle number between different systems or subsystems.
Section 2.2. Arovas. (2019). Thermodynamics and Statistical Mechanics
|
1 2 3 4 5 6 7 8 9 10 11 12 |
CREATE TABLE SQL_Table_004 (ID int, Object_of_exchange varchar(255), Constancy varchar(255) Subject_of_equilibrium varchar(255) ); INSERT INTO SQL_Table_004 (Object_of_exchange, Constancy, Subject_of_equilibrium) VALUES ('energy', 'temperature (T)', 'thermal') ('volume', 'momentum/temperature (p/T)', 'mechanical') ('particle', 'chemical potential/temperature (\mu /T)', 'chemical') |
|
1 2 3 4 5 6 7 8 9 |
Output. +------+---------------------+-------------------------------+--------------------------+ | ID | Object_of_exchange | Constancy | Subject_of_equilibrium | +------+---------------------+-------------------------------+--------------------------+ | 1 | energy | temperature (T) | thermal | | 2 | volume | momentum/temperature (p/T) | mechanical | | 3 | particle | chemical potential/ | chemical | | | | temperature (\mu /T) | | +------+---------------------+-------------------------------+--------------------------+ |
