Yeah good notice:
mwater=m[x1-x2(100-x1)/(100-x2)]/100
Now thats how it's in the thesis document.
With these values in example in thesis gives 19617 (printed in document).
I get always with Excel, basic calculator, etc value of 8827,8. So I'm wondering what am I doing wrong?
End bracket now added, sorry for inconvinience.
I'm studying how wood dries and energy consumption during that process.
It looks like you forgot the order of operations, and subtracted x1-x2 before multiplying. You need to multiply x2 by (100-x1)/(100-x2) and then subtract from x1. In fact, in your spreadsheet, you explicitly added parentheses around x1-x2, telling Excel to do that. If you had omitted them, you would get the right answer.
So what you calculated was
m[(x1-x2)(100-x1)/(100-x2)]/100 = 38400[(55-8)(100-55)/(100-8)]/100 = 38400[(47)(45)/(92)]/100 = 8827.8,
rather than
m[x1-x2(100-x1)/(100-x2)]/100 = 38400[55-8(100-55)/(100-8)]/100 = 38400[55-(8(45)/(92))]/100 = 19617.4
Also, now that we know the problem, we can verify that the formula as given is correct.
[MATH]m_{\text{water}} = m\frac{x_1 - x_2\frac{100-x_1}{100-x_2}}{100}[/MATH]
ADDENDUM: I just noticed that the work you show that gives the correct answer is wrong:
m
water=m[x1-x2(100-x1)/(100-x2)]/100
m
water=38400kg[55-8(100-55)/(100-8)]/100
m
water=38400kg[
47(45)/(92)]/100
m
water=19167kg
Is this actually what the source shows? That next to last line evaluates to your wrong answer, not the line below it!