<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, unable to store HFloat</title>
    <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 21:27:04 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 21:27:04 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, unable to store HFloat</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, unable to store HFloat</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat</link>
    </image>
    <item>
      <title>Imaginary</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat?ref=Feed:MaplePrimes:unable to store HFloat:Comments#answer139315</link>
      <itunes:summary>&lt;p&gt;The term n*(-diff(f(eta),eta$2))^(n-1)*diff(f(eta),eta$3) is likely to cause problems. Is this written exactly as you want it?&lt;/p&gt;
&lt;p&gt;Try&lt;/p&gt;
&lt;p&gt;evalc((-1*p)^(0.4-1)) assuming p&amp;gt;0;&lt;/p&gt;
&lt;p&gt;You see that if diff(f(eta),eta,eta) is real and positive then (-diff(f(eta),eta$2))^(n-1) is imaginary.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The term n*(-diff(f(eta),eta$2))^(n-1)*diff(f(eta),eta$3) is likely to cause problems. Is this written exactly as you want it?&lt;/p&gt;
&lt;p&gt;Try&lt;/p&gt;
&lt;p&gt;evalc((-1*p)^(0.4-1)) assuming p&amp;gt;0;&lt;/p&gt;
&lt;p&gt;You see that if diff(f(eta),eta,eta) is real and positive then (-diff(f(eta),eta$2))^(n-1) is imaginary.&lt;/p&gt;</description>
      <guid>139315</guid>
      <pubDate>Thu, 08 Nov 2012 07:26:31 Z</pubDate>
      <itunes:author>Preben Alsholm</itunes:author>
      <author>Preben Alsholm</author>
    </item>
    <item>
      <title>Re((-diff(f(eta),eta$2))^(n-1) )?</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat?ref=Feed:MaplePrimes:unable to store HFloat:Comments#comment139321</link>
      <itunes:summary>&lt;p&gt;@&lt;a href="http://www.mapleprimes.com/users/Preben%20Alsholm"&gt;Preben Alsholm&lt;/a&gt; thanks for your explanation.&lt;/p&gt;
&lt;p&gt;The system is exactly the one for which I need a solution. You can see the attached research&lt;/p&gt;
&lt;p&gt;paper &lt;a href="/view.aspx?sf=139321/446235/Magnetohydrodynamic_.pdf"&gt;Magnetohydrodynamic_.pdf&lt;/a&gt;, where they give the solution of exactly the same equation (eq1).&lt;/p&gt;
&lt;p&gt;Infact, I adopted the eq1 from there including one extra term which I needed for my model.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As you rightly mentioned that,&amp;nbsp;&lt;span&gt;&amp;nbsp;"if diff(f(eta),eta,eta) is real and positive then (-diff(f(eta),eta$2))^(n-1) is imaginary". What I am thinking is that can we consider the real part and find the solution?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt; How we will do it in Maple?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;@&lt;a href="http://www.mapleprimes.com/users/Preben%20Alsholm"&gt;Preben Alsholm&lt;/a&gt; thanks for your explanation.&lt;/p&gt;
&lt;p&gt;The system is exactly the one for which I need a solution. You can see the attached research&lt;/p&gt;
&lt;p&gt;paper &lt;a href="/view.aspx?sf=139321/446235/Magnetohydrodynamic_.pdf"&gt;Magnetohydrodynamic_.pdf&lt;/a&gt;, where they give the solution of exactly the same equation (eq1).&lt;/p&gt;
&lt;p&gt;Infact, I adopted the eq1 from there including one extra term which I needed for my model.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As you rightly mentioned that,&amp;nbsp;&lt;span&gt;&amp;nbsp;"if diff(f(eta),eta,eta) is real and positive then (-diff(f(eta),eta$2))^(n-1) is imaginary". What I am thinking is that can we consider the real part and find the solution?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt; How we will do it in Maple?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Thanks&amp;nbsp;&lt;/span&gt;&lt;/p&gt;</description>
      <guid>139321</guid>
      <pubDate>Thu, 08 Nov 2012 12:13:24 Z</pubDate>
      <itunes:author>J4James</itunes:author>
      <author>J4James</author>
    </item>
    <item>
      <title>Re</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat?ref=Feed:MaplePrimes:unable to store HFloat:Comments#comment139322</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat#comment139321"&gt;@J4James&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;haven't read your question in detail, still if your imaginary numbers are spurious, you could try to set the option 'complex"=false in dsolve or you could use Re(x(t)) to trim the imaginary bits out. The former is presumably a better approach.&lt;/p&gt;
&lt;p&gt;http://www.maplesoft.com/support/help/Maple/view.aspx?path=Re&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat#comment139321"&gt;@J4James&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;haven't read your question in detail, still if your imaginary numbers are spurious, you could try to set the option 'complex"=false in dsolve or you could use Re(x(t)) to trim the imaginary bits out. The former is presumably a better approach.&lt;/p&gt;
&lt;p&gt;http://www.maplesoft.com/support/help/Maple/view.aspx?path=Re&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>139322</guid>
      <pubDate>Thu, 08 Nov 2012 13:34:32 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>How?</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat?ref=Feed:MaplePrimes:unable to store HFloat:Comments#comment139325</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat#comment139322"&gt;@PatrickT&lt;/a&gt;, I tried to follow ur suggestions but no luck.&lt;/p&gt;
&lt;p&gt;1. complex=false&lt;/p&gt;
&lt;pre&gt; dsolve(subs(para,epsilon=1.6, {bc, eq1, eq2}), numeric,complex=false):&lt;br&gt;Error, (in dsolve/numeric/bvp) bvp keyword was complex, optional keyword must be&lt;/pre&gt;
&lt;pre&gt; one of 'output', 'value', 'range', 'abserr', 'maxmesh', 'initmesh','continuation', 'mincont',&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;'approxsoln', 'adaptive', 'interpolant', 'optimize'&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;2. Re&lt;/p&gt;
&lt;p&gt;eq1:=Re(n*(-diff(f(eta),eta$2))^(n-1)*diff(f(eta),eta$3))+(2*n/(n+1))*f(eta)*&lt;/p&gt;
&lt;p&gt;diff(f(eta),eta$2)-diff(f(eta),eta$1)^2-M*diff(f(eta),eta$1)+M*epsilon+epsilon^2+&lt;/p&gt;
&lt;p&gt;lambda*theta(eta)=0;&lt;/p&gt;
&lt;p&gt;eq2:=remain the same with bcs;&lt;/p&gt;
&lt;pre&gt;dsolve(subs(para,epsilon=1.6, {bc, eq1, eq2}), numeric):&lt;br&gt;Error, (in fproc) unable to store 'HFloat(0.251188643150958)*&lt;/pre&gt;
&lt;pre&gt;RootOf(2000000000*Re(_Z)-HFloat(6.5e10))' when datatype=float[8]&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;Thanks&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat#comment139322"&gt;@PatrickT&lt;/a&gt;, I tried to follow ur suggestions but no luck.&lt;/p&gt;
&lt;p&gt;1. complex=false&lt;/p&gt;
&lt;pre&gt; dsolve(subs(para,epsilon=1.6, {bc, eq1, eq2}), numeric,complex=false):&lt;br&gt;Error, (in dsolve/numeric/bvp) bvp keyword was complex, optional keyword must be&lt;/pre&gt;
&lt;pre&gt; one of 'output', 'value', 'range', 'abserr', 'maxmesh', 'initmesh','continuation', 'mincont',&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;'approxsoln', 'adaptive', 'interpolant', 'optimize'&lt;/pre&gt;
&lt;p&gt;&amp;nbsp;2. Re&lt;/p&gt;
&lt;p&gt;eq1:=Re(n*(-diff(f(eta),eta$2))^(n-1)*diff(f(eta),eta$3))+(2*n/(n+1))*f(eta)*&lt;/p&gt;
&lt;p&gt;diff(f(eta),eta$2)-diff(f(eta),eta$1)^2-M*diff(f(eta),eta$1)+M*epsilon+epsilon^2+&lt;/p&gt;
&lt;p&gt;lambda*theta(eta)=0;&lt;/p&gt;
&lt;p&gt;eq2:=remain the same with bcs;&lt;/p&gt;
&lt;pre&gt;dsolve(subs(para,epsilon=1.6, {bc, eq1, eq2}), numeric):&lt;br&gt;Error, (in fproc) unable to store 'HFloat(0.251188643150958)*&lt;/pre&gt;
&lt;pre&gt;RootOf(2000000000*Re(_Z)-HFloat(6.5e10))' when datatype=float[8]&lt;/pre&gt;
&lt;pre&gt;&amp;nbsp;&lt;/pre&gt;
&lt;pre&gt;Thanks&lt;/pre&gt;</description>
      <guid>139325</guid>
      <pubDate>Thu, 08 Nov 2012 16:03:00 Z</pubDate>
      <itunes:author>J4James</itunes:author>
      <author>J4James</author>
    </item>
    <item>
      <title>bvp v. ivp</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat?ref=Feed:MaplePrimes:unable to store HFloat:Comments#comment139380</link>
      <itunes:summary>&lt;p&gt;you're right, 'complex' is not an option when dsolve takes a bvp as input, I hadn't noticed that. Can you convert your system to an ivp? if you have a known endpoint, you could start from there and run time backwards (i.e. t=-10..0). Have you tried variations on your problem? i.e. different parameter values. Do you have problems for this specific formulation or more generically?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;you're right, 'complex' is not an option when dsolve takes a bvp as input, I hadn't noticed that. Can you convert your system to an ivp? if you have a known endpoint, you could start from there and run time backwards (i.e. t=-10..0). Have you tried variations on your problem? i.e. different parameter values. Do you have problems for this specific formulation or more generically?&lt;/p&gt;</description>
      <guid>139380</guid>
      <pubDate>Fri, 09 Nov 2012 13:10:12 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>the same issue with another model</title>
      <link>http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat?ref=Feed:MaplePrimes:unable to store HFloat:Comments#comment140267</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat#comment139380"&gt;@PatrickT&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am facing the same issue of&amp;nbsp;&amp;nbsp;"unable to store 'HFloat(1.005717340914193)*y'".&lt;/p&gt;
&lt;p&gt;Even I tried to to use approx solution but no luck.&lt;/p&gt;
&lt;p&gt;Please have a look. &lt;a href="/view.aspx?sf=140267/447685/P_new.mw"&gt;P_new.mw&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/139310-Unable-To-Store-HFloat#comment139380"&gt;@PatrickT&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I am facing the same issue of&amp;nbsp;&amp;nbsp;"unable to store 'HFloat(1.005717340914193)*y'".&lt;/p&gt;
&lt;p&gt;Even I tried to to use approx solution but no luck.&lt;/p&gt;
&lt;p&gt;Please have a look. &lt;a href="/view.aspx?sf=140267/447685/P_new.mw"&gt;P_new.mw&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;</description>
      <guid>140267</guid>
      <pubDate>Tue, 13 Nov 2012 09:04:09 Z</pubDate>
      <itunes:author>J4James</itunes:author>
      <author>J4James</author>
    </item>
  </channel>
</rss>