Differential equation for pressure and heat release in combustion engine












0












$begingroup$


I have a differential equation on the following form, and I am interested in finding $p(theta)$



$frac{dp}{d theta}=frac{gamma-1}{V(theta)}frac{dQ_{HR}}{d theta} - gamma frac{p}{V(theta)} frac{dV}{d theta}$



and I know the following,



$frac{dQ_{HR}}{d theta} = frac{dm_{burnt}}{d theta}H_u$



$frac{dm_{burnt}}{d theta} = k_1 sinleft( pi frac{theta-theta_0}{Delta theta_c}right)$



and,



$frac{dV}{d theta} = k_2left(sin(theta)+k_3sin(2theta) right)$



I have tried integration by parts, but this only seems to dig my hole deeper. What are your suggestions to tackling a problem like this?










share|cite|improve this question









$endgroup$

















    0












    $begingroup$


    I have a differential equation on the following form, and I am interested in finding $p(theta)$



    $frac{dp}{d theta}=frac{gamma-1}{V(theta)}frac{dQ_{HR}}{d theta} - gamma frac{p}{V(theta)} frac{dV}{d theta}$



    and I know the following,



    $frac{dQ_{HR}}{d theta} = frac{dm_{burnt}}{d theta}H_u$



    $frac{dm_{burnt}}{d theta} = k_1 sinleft( pi frac{theta-theta_0}{Delta theta_c}right)$



    and,



    $frac{dV}{d theta} = k_2left(sin(theta)+k_3sin(2theta) right)$



    I have tried integration by parts, but this only seems to dig my hole deeper. What are your suggestions to tackling a problem like this?










    share|cite|improve this question









    $endgroup$















      0












      0








      0





      $begingroup$


      I have a differential equation on the following form, and I am interested in finding $p(theta)$



      $frac{dp}{d theta}=frac{gamma-1}{V(theta)}frac{dQ_{HR}}{d theta} - gamma frac{p}{V(theta)} frac{dV}{d theta}$



      and I know the following,



      $frac{dQ_{HR}}{d theta} = frac{dm_{burnt}}{d theta}H_u$



      $frac{dm_{burnt}}{d theta} = k_1 sinleft( pi frac{theta-theta_0}{Delta theta_c}right)$



      and,



      $frac{dV}{d theta} = k_2left(sin(theta)+k_3sin(2theta) right)$



      I have tried integration by parts, but this only seems to dig my hole deeper. What are your suggestions to tackling a problem like this?










      share|cite|improve this question









      $endgroup$




      I have a differential equation on the following form, and I am interested in finding $p(theta)$



      $frac{dp}{d theta}=frac{gamma-1}{V(theta)}frac{dQ_{HR}}{d theta} - gamma frac{p}{V(theta)} frac{dV}{d theta}$



      and I know the following,



      $frac{dQ_{HR}}{d theta} = frac{dm_{burnt}}{d theta}H_u$



      $frac{dm_{burnt}}{d theta} = k_1 sinleft( pi frac{theta-theta_0}{Delta theta_c}right)$



      and,



      $frac{dV}{d theta} = k_2left(sin(theta)+k_3sin(2theta) right)$



      I have tried integration by parts, but this only seems to dig my hole deeper. What are your suggestions to tackling a problem like this?







      differential






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Dec 8 '18 at 16:23









      Rasmus0909Rasmus0909

      1




      1






















          2 Answers
          2






          active

          oldest

          votes


















          0












          $begingroup$

          The best I can get is the following:



          Firstly, integrate the last equation gives
          $$V(theta) = k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)$$ where $C_1$ is some constant to be determined later.



          Now substitute everything into the first equation, we get
          $$frac{mathrm{d}p}{mathrm{d}theta} = frac{gamma - 1}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_1 sin left(pi frac{theta - theta_0}{Delta theta_c} right) H_u - gamma cdot frac{p}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_2 (sin theta + k_3 sin 2 theta)$$



          Notice it is a $1^{text{st}}$ order ODE. Re-writing it into the standard form $y' + P(x) y = Q(x)$ gives



          $$frac{mathrm{d}p}{mathrm{d}theta} + gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} p = frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1}$$



          Next, we compute
          $$begin{align}
          int gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} mathrm{d}theta
          &= gamma int frac{mathrm{d} (-cos theta - frac{k_3}{2} cos 2 theta + C_1)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} \
          &= gamma log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| \
          &= log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma
          end{align}$$



          So the integrating factor $mu(theta) = left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma $



          Finally, we need to compute
          $$int frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma mathrm{d} theta \
          = frac{k_1}{k_2}(gamma - 1)H_u int sin left(pi frac{theta - theta_0}{Delta theta_c} right) cdot operatorname{sgn} left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right) cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ {gamma - 1} mathrm{d} theta$$

          but this is how far I've got.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
            $endgroup$
            – Rasmus0909
            Dec 9 '18 at 15:20



















          0












          $begingroup$

          I ended up using a forward Euler numerical integration for this. I don't think the analytical solution is worth anybody's time for this.






          share|cite|improve this answer









          $endgroup$













            Your Answer





            StackExchange.ifUsing("editor", function () {
            return StackExchange.using("mathjaxEditing", function () {
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            });
            });
            }, "mathjax-editing");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "69"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            noCode: true, onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3031306%2fdifferential-equation-for-pressure-and-heat-release-in-combustion-engine%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0












            $begingroup$

            The best I can get is the following:



            Firstly, integrate the last equation gives
            $$V(theta) = k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)$$ where $C_1$ is some constant to be determined later.



            Now substitute everything into the first equation, we get
            $$frac{mathrm{d}p}{mathrm{d}theta} = frac{gamma - 1}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_1 sin left(pi frac{theta - theta_0}{Delta theta_c} right) H_u - gamma cdot frac{p}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_2 (sin theta + k_3 sin 2 theta)$$



            Notice it is a $1^{text{st}}$ order ODE. Re-writing it into the standard form $y' + P(x) y = Q(x)$ gives



            $$frac{mathrm{d}p}{mathrm{d}theta} + gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} p = frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1}$$



            Next, we compute
            $$begin{align}
            int gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} mathrm{d}theta
            &= gamma int frac{mathrm{d} (-cos theta - frac{k_3}{2} cos 2 theta + C_1)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} \
            &= gamma log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| \
            &= log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma
            end{align}$$



            So the integrating factor $mu(theta) = left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma $



            Finally, we need to compute
            $$int frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma mathrm{d} theta \
            = frac{k_1}{k_2}(gamma - 1)H_u int sin left(pi frac{theta - theta_0}{Delta theta_c} right) cdot operatorname{sgn} left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right) cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ {gamma - 1} mathrm{d} theta$$

            but this is how far I've got.






            share|cite|improve this answer









            $endgroup$













            • $begingroup$
              Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
              $endgroup$
              – Rasmus0909
              Dec 9 '18 at 15:20
















            0












            $begingroup$

            The best I can get is the following:



            Firstly, integrate the last equation gives
            $$V(theta) = k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)$$ where $C_1$ is some constant to be determined later.



            Now substitute everything into the first equation, we get
            $$frac{mathrm{d}p}{mathrm{d}theta} = frac{gamma - 1}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_1 sin left(pi frac{theta - theta_0}{Delta theta_c} right) H_u - gamma cdot frac{p}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_2 (sin theta + k_3 sin 2 theta)$$



            Notice it is a $1^{text{st}}$ order ODE. Re-writing it into the standard form $y' + P(x) y = Q(x)$ gives



            $$frac{mathrm{d}p}{mathrm{d}theta} + gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} p = frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1}$$



            Next, we compute
            $$begin{align}
            int gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} mathrm{d}theta
            &= gamma int frac{mathrm{d} (-cos theta - frac{k_3}{2} cos 2 theta + C_1)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} \
            &= gamma log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| \
            &= log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma
            end{align}$$



            So the integrating factor $mu(theta) = left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma $



            Finally, we need to compute
            $$int frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma mathrm{d} theta \
            = frac{k_1}{k_2}(gamma - 1)H_u int sin left(pi frac{theta - theta_0}{Delta theta_c} right) cdot operatorname{sgn} left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right) cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ {gamma - 1} mathrm{d} theta$$

            but this is how far I've got.






            share|cite|improve this answer









            $endgroup$













            • $begingroup$
              Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
              $endgroup$
              – Rasmus0909
              Dec 9 '18 at 15:20














            0












            0








            0





            $begingroup$

            The best I can get is the following:



            Firstly, integrate the last equation gives
            $$V(theta) = k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)$$ where $C_1$ is some constant to be determined later.



            Now substitute everything into the first equation, we get
            $$frac{mathrm{d}p}{mathrm{d}theta} = frac{gamma - 1}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_1 sin left(pi frac{theta - theta_0}{Delta theta_c} right) H_u - gamma cdot frac{p}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_2 (sin theta + k_3 sin 2 theta)$$



            Notice it is a $1^{text{st}}$ order ODE. Re-writing it into the standard form $y' + P(x) y = Q(x)$ gives



            $$frac{mathrm{d}p}{mathrm{d}theta} + gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} p = frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1}$$



            Next, we compute
            $$begin{align}
            int gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} mathrm{d}theta
            &= gamma int frac{mathrm{d} (-cos theta - frac{k_3}{2} cos 2 theta + C_1)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} \
            &= gamma log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| \
            &= log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma
            end{align}$$



            So the integrating factor $mu(theta) = left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma $



            Finally, we need to compute
            $$int frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma mathrm{d} theta \
            = frac{k_1}{k_2}(gamma - 1)H_u int sin left(pi frac{theta - theta_0}{Delta theta_c} right) cdot operatorname{sgn} left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right) cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ {gamma - 1} mathrm{d} theta$$

            but this is how far I've got.






            share|cite|improve this answer









            $endgroup$



            The best I can get is the following:



            Firstly, integrate the last equation gives
            $$V(theta) = k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)$$ where $C_1$ is some constant to be determined later.



            Now substitute everything into the first equation, we get
            $$frac{mathrm{d}p}{mathrm{d}theta} = frac{gamma - 1}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_1 sin left(pi frac{theta - theta_0}{Delta theta_c} right) H_u - gamma cdot frac{p}{k_2 left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right)} cdot k_2 (sin theta + k_3 sin 2 theta)$$



            Notice it is a $1^{text{st}}$ order ODE. Re-writing it into the standard form $y' + P(x) y = Q(x)$ gives



            $$frac{mathrm{d}p}{mathrm{d}theta} + gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} p = frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1}$$



            Next, we compute
            $$begin{align}
            int gamma frac{sin theta + k_3 sin 2 theta}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} mathrm{d}theta
            &= gamma int frac{mathrm{d} (-cos theta - frac{k_3}{2} cos 2 theta + C_1)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} \
            &= gamma log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| \
            &= log left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma
            end{align}$$



            So the integrating factor $mu(theta) = left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma $



            Finally, we need to compute
            $$int frac{k_1}{k_2}(gamma - 1)H_u frac{sin left(pi frac{theta - theta_0}{Delta theta_c} right)}{-cos theta - frac{k_3}{2} cos 2 theta + C_1} cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ gamma mathrm{d} theta \
            = frac{k_1}{k_2}(gamma - 1)H_u int sin left(pi frac{theta - theta_0}{Delta theta_c} right) cdot operatorname{sgn} left(-cos theta - frac{k_3}{2} cos 2 theta + C_1 right) cdot left|-cos theta - frac{k_3}{2} cos 2 theta + C_1 right| ^ {gamma - 1} mathrm{d} theta$$

            but this is how far I've got.







            share|cite|improve this answer












            share|cite|improve this answer



            share|cite|improve this answer










            answered Dec 8 '18 at 20:34









            Alex VongAlex Vong

            1,309819




            1,309819












            • $begingroup$
              Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
              $endgroup$
              – Rasmus0909
              Dec 9 '18 at 15:20


















            • $begingroup$
              Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
              $endgroup$
              – Rasmus0909
              Dec 9 '18 at 15:20
















            $begingroup$
            Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
            $endgroup$
            – Rasmus0909
            Dec 9 '18 at 15:20




            $begingroup$
            Thank you so much Alex. Looks like a huge effort! FYI, I used a forward Euler, which seemed to do the trick (although it's slightly cheating).
            $endgroup$
            – Rasmus0909
            Dec 9 '18 at 15:20











            0












            $begingroup$

            I ended up using a forward Euler numerical integration for this. I don't think the analytical solution is worth anybody's time for this.






            share|cite|improve this answer









            $endgroup$


















              0












              $begingroup$

              I ended up using a forward Euler numerical integration for this. I don't think the analytical solution is worth anybody's time for this.






              share|cite|improve this answer









              $endgroup$
















                0












                0








                0





                $begingroup$

                I ended up using a forward Euler numerical integration for this. I don't think the analytical solution is worth anybody's time for this.






                share|cite|improve this answer









                $endgroup$



                I ended up using a forward Euler numerical integration for this. I don't think the analytical solution is worth anybody's time for this.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Dec 9 '18 at 15:19









                Rasmus0909Rasmus0909

                1




                1






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Mathematics Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    Use MathJax to format equations. MathJax reference.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3031306%2fdifferential-equation-for-pressure-and-heat-release-in-combustion-engine%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?