|
|
Re: Ask for help: how to let mathematica output Fortran code with fewest float operations?
Posted:
Jan 13, 2013 9:29 AM
|
|
On Sunday, January 13, 2013 2:27:14 PM UTC+8, Tang Laoya wrote: > Dear all, > > > > I am new to mathematica and I am trying to let mathematicat output some express to Fortran code. However, it seems that it will output some duplicated expressions so that these expressions would be calculated more than once. Is there any good method to define a rule to let mathematica recognize duplicated expressions and assign them to a new variable and then simplify the Fortran code? > > > > Thanks, > > Tang Laoya > > > > > > > > > > P.S: > > > > The following is a test code of mathematica and the solution of x, y and z contains many duplicated expression, for example, (-36*a + 20*a**3 - 216*b)**2. > > > > sol = Solve[{x^2 + y^2 + z^2 == 1, x + y + z == a , x*y*z == b}, {x, > > y, z}]; > > xx = x /. sol > > yy = y /. sol > > zz = z /. sol > > Print["Writing Fortran Code . . . : / "]; > > SetDirectory["F:\\tang\\mathtest"]; > > strm = OpenWrite["test.f90", FormatType -> FotranForm, > > PageWidth -> 70]; > > (* write subroutine of invisopar*) > > WriteString[strm, "subroutine test(x,y,z,a,b)\n"]; > > WriteString[strm, "implicit none\n"]; > > WriteString[strm, "real*8::x,y,z,a,b\n"]; > > nroot = Length[xx]; > > For[ii = 1, ii <= nroot, > > WriteString[strm, > > "x = " <> ToString[FortranForm[xx[[ii]]]] <> "\n"]; ii++]; > > For[ii = 1, ii <= nroot, > > WriteString[strm, > > "y = " <> ToString[FortranForm[yy[[ii]]]] <> "\n"]; ii++]; > > For[ii = 1, ii <= nroot, > > WriteString[strm, > > "z = " <> ToString[FortranForm[zz[[ii]]]] <> "\n"]; ii++]; > > WriteString[strm, "end subroutine\n"]; > > Close[strm]; > > Print["Finished Writing Fortran Code . . . : / "]; > > > > > > When the test.f90 is outputted, the first solution of x is: > > x = a/3. + (-6 + 2*a**2)/(3.*2**0.6666666666666666*(-36*a + 20*a**3 + Sqrt(4*(-6 + 2*a**2)**3 + (-36*a + 20*a**3 - 216*b)**2) - 216*b)**0.3333333333333333) - (-36*a + 20*a**3 + Sqrt(4*(-6 + 2*a**2)**3 + (-36*a + 20*a**3 - 216*b)**2) - 216*b)**0.3333333333333333/(6.*2**0.3333333333333333) > > > > I would like that the code is as follows: > > tmp0 = 216*b > > tmp1 = -36*a + 20*a**3 > > tmp2 = (tmp1 - tmp0 )**2 > > tmp3 = -6 + 2*a**2 > > tmp4 = 4*tmp3**3 > > tmp5 = Sqrt(tmp4 + tmp2 ) > > tmp6 = tmp1 + tmp5 - tmp0 > > tmp7 = tmp6**0.3333333333333333 > > tmp8 = 2**0.6666666666666666 > > > > x = a/3. + tmp3 /(3.*tmp8 *tmp7 ) - tmp7/(6.*tmp8)
Dear Dr. M. Abbasi,
Thank you very much for your kindly reply. I have outputted the expression to Fortran language. However, I need a simplified code which has fewest floating operations, just like the 'optimized' in maple I showed at last.
Could you please help me to take a look at it?
On the other hand, in maple, I have the following code:
with(codegen, fortran) solutions := solve({x*y*z = b, x+y+z = a, x^2+y^2+z^2 = 1}, {x, y, z}) sol := map(allvalues, solutions) fortran(sol, optimized, mode = double)
The following errors displayed: Error, (in codegen/fortran) invalid argument x = -(1/6)*(-10*a^3+18*a+108*b+6*(3*a^6-12*a^4+15*a^2-6-60*a^3*b+108*a*b+324*b^2)^(1/2))^(1/3)+6*((1/18)*a^2-1/6)/(-10*a^3+18*a+108*b+6*(3*a^6-12*a^4+15*a^2-6-60*a^3*b+108*a*b+324*b^2)^(1/2))^(1/3)+(2/3)*a-(1/6)*(-3*(3*a^6-12*a^4+15*a^2-6-60*a^3*b+108*a*b+324*b^2)^(1/2)+(-10*a^3+18*a+108*b+6*(3*a^6-12*a^4+15*a^2-6-60*a^3*b+108*a*b+324*b^2)^(1/2))^(1/3)*a^2-3*(-10*a^3+18*a+108*b+6*(3*a^6-12*a^4+15*a^2-6-60*a^3*b+108*a*b+324*b^2)^(1/2))^(1/3)-54*b+2*(-10*a^3+18*a+108*b+6*(3*a^6-12*a^4+15*a^2-6-60*a^3*b+108*a*b+324*b^2)^(1/2))^(2/3)*a+5*a^3-9*a-(162-648*a^2+594*a^4-156*a^6+6*(-10*a^3+18*a+108*b+6*(3*...
How to let maple to export the Fortran code for the solution? Furthermore, how to let maple to export Fortran code to a file as I done from mathematica as I posted in my last item?
Thanks, Tang Laoya
|
|