This ist only my first simple steps to build a computation to dimension an upload service. Even the first steps are not easy. If i am evaluating this:
uploadtime[filesize_, bandwidth_] := (filesize / bandwidth)
uploadtime[UnitConvert[Quantity[12770776, "Bytes"], "Megabits"],
Quantity[2.4, "Megabits"/"Seconds"]]
I am getting this:
Quantity[42.5693, "Seconds"]
If I am evaluating this:
Convert[Month, Second]
I am getting this:
2628000 Second
If I am mulitplying both results I am getting:
Second (Quantity[52560000, ("Megabits")/("Seconds")])
What am I doing wrong?