Thread Closed

MS Excel Help -- Saturation Points ?!

 
Share Thread Thread Tools
Nov30-07, 04:53 PM   #1
 

MS Excel Help -- Saturation Points ?!


Does anyone know how to do this with if-then statements or something else?

For example:

I want to analyze inflow and outflow in a tank, when the volume reaches zero then it's empty of course--so I shouldn't have a negative volume after this, volume should just be zero until I can finally get a large enough inflow. Say I'm doing this in minutes.
 
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Hong Kong launches first electric taxis
>> Morocco to harness the wind in energy hunt
>> Galaxy's Ring of Fire
Nov30-07, 05:54 PM   #2
 
Mentor
Sounds like the floor function in Excel would do what you want. Try help floor.
 
Nov30-07, 05:59 PM   #3
 
Mentor
Quote by berkeman View Post
Sounds like the floor function in Excel would do what you want. Try help floor.
Oops, no. Foor is different. Using an IF statement would probably be best.
 
Nov30-07, 06:01 PM   #4
 
Mentor

MS Excel Help -- Saturation Points ?!


Quote by Excel Help
=IF(logical_test,value_if_true,value_if_false)

So use =IF(cell_reference < 0, 0, cell_reference)

Here are two columns of numbers: The first is just the numbers, and the second column uses the above equation in each cell, with the cell_reference equal to the cell to its left. Just use control-d to pull the first cell equation down to all the cells in the right column to get the calculations done.

Code:
10	10
9	9
8	8
7	7
6	6
5	5
4	4
3	3
2	2
1	1
0	0
-1	0
-2	0
-3	0
-4	0
-5	0
-6	0
 
Nov30-07, 07:58 PM   #5
 
Recognitions:
Science Advisor Science Advisor
I'm not sure what your volume calcs look like, but a standard IF() function in Excel would look like:

IF(A1>0,ENTER CALC HERE,0) where A1 is the cell that would display the tank volume.
 
Dec4-07, 09:06 AM   #6
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
You have to use VBA in Excel to use the full IF-THEN-ELSE statement.

IF dummy > 10 THEN
msgbox "dummy is greater than 10"
ELSE
msgbox "dummy is less than or equal to 10"
END IF


I'm not sure what you are asking about the rest of the question.
 
Dec4-07, 05:27 PM   #7
 
Mentor
No, the excel command contains the "else". It's the 3rd term in Fred's statement.

Also, my read of the question says that both the first and second terms should be the equation - first as an argument, then as an output. Ie:

=if([your function]>0,[your function],0)

But it is tough to know for sure without getting more specifics of the problem.
 
Dec4-07, 07:01 PM   #8
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
Quote by russ_watters View Post
No, the excel command contains the "else". It's the 3rd term in Fred's statement.
Never said it wasn't.

My comment was that if you want to use the full functionality to use VBA. That way you can use nested statements (a lot easier anyway), plus loops, etc... It just depends on how complicated your calculation is (or what ever you need the app to do).

If you need just one simple If-Then-Else statement, then of course the Excel function IF() would work just fine.
 
Dec5-07, 06:07 PM   #9
 
I guess berkeman's solution makes sense, I have to look at my excel model *later* and see if that would work. Thanks.
 
Dec5-07, 06:21 PM   #10
 
Here's a stripped down version of the stuff I was working on.

It's a model of the volume in a tank, ignoring how a real tank's outflow would change with the amount of mass in the tank.
 
Dec16-07, 10:30 PM   #11
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
In this particular case the IF statement is overkill. You could just use
=MAX(0, [formula here])
 
Thread Closed
Thread Tools


Similar Threads for: MS Excel Help -- Saturation Points ?!
Thread Forum Replies
CO2 saturation point? Earth 17
Saturation Vapour Pressure Classical Physics 5
Magnetic Saturation?? General Physics 1
Nuclear force saturation Introductory Physics Homework 2
Saturation current. Atomic, Solid State, Comp. Physics 1