473,398 Members | 2,403 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

dividing an int by a float in trinket to calculate decay rates.

Hi all, i could use a little help with this one, i'm supposed to be calculating decay rates using specifically trinket but i'm having trouble with line 23 of my code, namely i'm getting a tuple/float error. "TypeError: unsupported operand type(s) for Div: 'list' and 'float' on line 23 in main.py"

Expand|Select|Wrap|Line Numbers
  1. from math import * 
  2. import numpy as np 
  3. from numpy import array
  4. import matplotlib.pyplot as plt
  5.  
  6. x = 1
  7.  
  8. time = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]
  9.  
  10. while True: 
  11.   name = input ("Enter name of isotope or type End to finish") 
  12.   if name == "End": 
  13.     break 
  14.   else: 
  15.     tau = float(input("Enter half-life of named isotope in seconds")) 
  16.     m = float(input("Enter starting mass of isotope in grams")) 
  17.     T = float(input("Enter time elapsed in seconds")) 
  18.     y = m * (exp((-log(2)) * (T / tau))) 
  19.     print "Mass of remaining isotope is", y, "g" 
  20.     Start = 5 / (exp((-log(2)) * (30 / tau))) 
  21.     print "To have 5 grams remaining after 30 s we need a starting mass of", Start, "g" 
  22.  
  23.     n = m * (exp((-log(2)) * (time / tau)))
  24.  
  25. plt.plot(t,n)
  26. plt.title("Radioactive decay rates of isotopes")
  27. plt.xlabel("Time / s")
  28. plt.ylabel("Remaining mass / g")
  29. plt.show()
May 22 '22 #1
0 9804

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: Shawn | last post by:
I'm developing an e-commerc website and now that I am working on the shipping portion, I wanted to know what is the best way to get shipping rates so that they always appear current on your...
3
by: shank | last post by:
Has anyone seen a decent script for getting USPS rates live in your own shopping cart?
53
by: Cardman | last post by:
Greetings, I am trying to solve a problem that has been inflicting my self created Order Forms for a long time, where the problem is that as I cannot reproduce this error myself, then it is...
4
by: Marc Schellens | last post by:
Is there a standard way of determining the number of digits a float needs (base 10) to be printed (the integer part)? log10 is too expensive. As is a loop dividing by 10. I could think of...
1
by: Zurghew | last post by:
Hello all, I have just created a database (partially) which will bill customers for work done. However I am stuck when it is comes to different rates for different works. REQUIRED: What I...
3
by: michb | last post by:
I need to be able to calculate on a daily basis, both normal and overtime hours for both payroll and job costing. I also then need to calculate the above on a weekly basis, in order to complete...
9
by: Nicolas Blais | last post by:
Hi, I have this following class which I use as a timer: #include <sys/time.h> using namespace std; class chrono { public: chrono() {};
1
by: gareth | last post by:
Hello I am looking for some help with table structure design, i am creating a database which manages data on loft and cavity wall insulation done by various contractors. The database uses look up...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.