Samir Khan

1911 Reputation

20 Badges

16 years, 79 days

My role is to help customers better exploit our tools. I’ve worked in selling, supporting and marketing maths and simulation software for all my professional career.

I’m fascinated by the full breadth and range of application of Maple. From financial mathematics and engineering to probability and calculus, I’m always impressed by what our users do with our tools.

However much I strenuously deny it, I’m a geek at heart. My first encounter with Maple was as an undergraduate when I used it to symbolically solve the differential equations that described the heat transfer in a series of stirred tanks. My colleagues brute-forced the problem with a numerical solution in Fortran (but they got the marks because that was the point of the course). I’ve since dramatized the process in a worksheet, and never fail to bore people with the story behind it.

I was born, raised and spent my formative years in England’s second city, Birmingham. I graduated with a degree in Chemical Engineering from The University of Nottingham, and after completing a PhD in Fluid Dynamics at Herriot-Watt University in Edinburgh, I started working for Adept Scientific – Maplesoft’s partner in the UK.

MaplePrimes Activity


These are replies submitted by Samir Khan

@rquirt 

 I don't completely understand your comment

> This requires me to use the convert function to convert degC to kelvin to get the Property functions to work.

Both these commands work, and give the same value of enthalpy

Property(massspecificenthalpy, T = 25*Unit(degC), P = 1.0 * Unit(atm), R717)

Property(massspecificenthalpy, T = 298.15*Unit(K), P = 1.0 * Unit(atm), R717)

@Mariusz Iwaniuk Did you extract the entire zip file to your hard drive?

In Windows Explorer, you should see something like this

The folders 0,1,2..9 contain the image files.

 

@acer Are you referring to the Polisario Controlled "Free Zone"?

Yes, that seems to be an glitch

@Rouben Rostamian  

This Maple 2017 code generates the globe

myMap := DataSets:-Builtin:-WorldMap();
Display(myMap, colors = "Mono", grid, mapdata = fine, thickness = 0, projection = Globe)

 

All credit goes to @epostma!

@Rouben Rostamian  Here's what I see (Windows 64 bit)

@nick999 

Units appear to work better when all math is done at maple prompts rather than just typing 2d math into a document

 

When using units, I work in 2d math using Worksheet mode. This gives you

  • the structure of input prompts
  • the 2d math
  • and the ability to use CTRL+Shift+U to enter units  (I find this quicker than using the mouse to choose units from the Units palette, and you don't see the Unit() syntax in your equations)

 

1) Maple doesnt seem to convert between different units of the same dimension. For example:

w:= 10*feet+6*inch;   simplify(w);  produces 10*feet+6*inch rather than 10.5 feet or 126 inch

and

b:= 1 inch * 12 inch/(1 feet * 1 feet); simplify(b); produces 12 inch^2/feet^2

 

Load with(Units[Simple]) before you do any units calculations. The result of 10.0*Unit('ft')+6.0*Unit('inch') will automatically be converted to meters

 

2) There isnt a way to specify output units.  For example:

w:= 100 inch;

A:= w^2;

produces 10,000 inch and there is no way to ask for A in terms of feet^2 (unless w is entered in feet)

 

Right click on the result and select "Units Formatting". In the dialog that pops up, enter ft^2 in "Custom Unit"

@ThU 

Mathcad has an elegant and simple implementation of units. I find that Mathcad users come to Maple with the same expectation of units.

We're working on a long term plan to bring make units handling more intuitive, and more deeply ingrained into the system. The first step was the introduction of the Units[Simple] package last year. Expect to see more changes with the next release.

Here's an animation of a robot arm drawing a Maple leaf, courtesy of this worksheet

@Markiyan Hirnyk Your screen shows shows "Adult literacy rate, population 15+ years, gender parity index (GPI)"

The application uses "Adult literacy rate, population 15+ years, both sexes (%)" for the year 2015. As the title of the application here states, only subsaharan african countries are plotted (as such, Egypt is not plotted)

@Markiyan Hirnyk The data comes from http://data.uis.unesco.org/Index.aspx?queryid=166. Specifically, it's the adult literacy rate for both sexes, ages 15+. The complete application is here

@Ramakrishnan The Organic Rankine Cycle application can be found here (and it's in the Application Gallery in Maple 2017). All the code is in the startup code region. In the application

  • the flowchart is an image (that is, an image file created in another tool and placed on the plot with the background option)
  • the text and numbers on the plot are textplots.

If you want box color to vary with the value of a variable, you'll need to construct the flowchart (i.e the boxes and the arrows) using plottools. Perhaps something like this

with(plottools):
with(ColorTools):
with(plots):
conditionalValue := 1.2:
colorList := [[0,79/255, 121/255], [221/255,231/255, 240/255]]:
colorValue := piecewise(conditionalValue > 1, colorList[1], colorList[2]):
p1:=rectangle([-2,1],[2,-1],color=Color("RGB",colorValue), style=surface):
p2 := textplot([2,1.4,sprintf("Value = %.1f",conditionalValue)],font=[Arial, Bold]):
display(p1, p2,scaling=constrained, view = [-5..5, -5..5], axes = none)

 

@Ramakrishnan You might be interested in this document:

Enhancements to PDE solvers in Maple 2017

@Markiyan Hirnyk We already know :)

Stefan

Please send one of your Mathcad worksheets to us at support@maplesoft.com (mark it for my attention)

I'll let you know if we think Maple is a viable alternative.

Samir

3 4 5 6 7 8 Page 5 of 8