Skip to content
Snippets Groups Projects
Commit 22831cf3 authored by Felix MARSOLLIER's avatar Felix MARSOLLIER
Browse files

Reduction of the margin on the convergence guarantee criterion on the view factor

parent ed267247
No related branches found
No related tags found
No related merge requests found
......@@ -14,8 +14,8 @@ protected
algorithm
for i in 1:size(Awall,1) loop
if Awall[i] > sum(Awall)*0.48 then
assert(false,"The surface with the index "+String(i)+" is greater than 48 percent of total surface, Fview factor not calculated\n", AssertionLevel.error);
if Awall[i] > sum(Awall)*0.499 then
assert(false,"The surface with the index "+String(i)+" is greater than 49.9 percent of total surface, Fview factor not calculated\n", AssertionLevel.error);
end if;
end for;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment