Skip to content

Commit d93b173

Browse files
authored
Modify image size and equations in README
Updated image size and state space representation in README.
1 parent 4971d4c commit d93b173

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,15 @@ A considerably smaller step size (compared to control sample time) should be con
5050

5151
## EPFC
5252
An extended PFC controller is implemented to control a nonlinear system. The exemplar system considered is a cart with a nonlinear spring attached to it, as shown in the image:
53-
<img width="1000" height="800" alt="cart-with-spring" src="https://github.com/user-attachments/assets/05ea10e7-072e-4275-8c02-80a70bdfcb7c" />
53+
<img width="500" height="400" alt="cart-with-spring" src="https://github.com/user-attachments/assets/05ea10e7-072e-4275-8c02-80a70bdfcb7c" />
5454

5555

5656
The system state space representation is as follows:
57+
5758
$$
58-
dot{x}_1 = x2
59-
\dot{x}_2 = -0.33 e^{-x_1} x_1 - 1.1 x_2 + u
60-
y = x_1
59+
\dot{x}_1 = x_2
60+
\dot{x}_2 = -0.33 e^{-x_1} x_1 - 1.1 x_2 + u
61+
y = x_1
6162
$$
6263

6364
Any other system can be used instead. It's simply a matter of system definition in one function, which will be shown later.

0 commit comments

Comments
 (0)