0

我在 Maple 中用微分方程和一些初始条件做一个快速的问题,但我收到一条错误消息,鉴于上下文,我似乎无法理解。谁能快速详细说明这里发生了什么?我该如何解决这个问题?

> KVLl2 := -4*(i2(t)-2)-12*(i2(t)-i3(t)) = 0;
              -16 i2(t) + 8 + 12 i3(t) = 0
> KVLl3 := -12*(i3(t)-i2(t))-4*i3(t)-3.5*(diff(i3(t), t)) = 0;
                                  / d       \    
       -16 i3(t) + 12 i2(t) - 3.5 |--- i3(t)| = 0
                                  \ dt      /    
> mySoln := dsolve({KVLl2, KVLl3, i2(0) = 1, i3(0) = 1}, i2, i3);

Error, (in dsolve) found the following equations not depending 
on the unknowns of the input system: {1 = 1}

提前致谢

4

1 回答 1

0

Maple 不知道如何处理您作为目标函数提供的 i2 和 i3。如果您查看 dsolve (?dsolve) 的帮助,您会发现它需要根据变量(在本例中为 t)和列表来指定其目标函数。尝试使用这个

dsolve({KVLl2, KVLl3, i2(0) = 1, i3(0) = 1}, {i2(t), i3(t)});

这里没有错误,但也没有解决方案(这可能与您的方程式有关)

于 2012-11-13T10:31:16.450 回答