Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Preloaded Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Monterey Phoenix
MP Model Collection
Preloaded Examples
Commits
82518f6a
Commit
82518f6a
authored
3 years ago
by
Giammarco, Kristin M
Browse files
Options
Downloads
Patches
Plain Diff
Upload New File
parent
4350c779
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Example61_Spent_Fuel_Cooling_and_Cleanup.mp
+203
-0
203 additions, 0 deletions
Example61_Spent_Fuel_Cooling_and_Cleanup.mp
with
203 additions
and
0 deletions
Example61_Spent_Fuel_Cooling_and_Cleanup.mp
0 → 100644
+
203
−
0
View file @
82518f6a
/* Cooling Pool
created by K.Giammarco 5/4/2020
modified by K.Giammarco 5/8/2020 with D.VanBossuyt
modified by K.Giammarco 5/13/2020 with D.VanBossuyt
The purpose of this model is to identify the components of and
interactions among a spent nuclear fuel cooling pool and its environment.
*/
/*—————————————————————————————
Actors
———————————————————————————————*/
SCHEMA Spent_Fuel_Cooling_and_Cleanup_System
ROOT External_Systems: { Operator, Ext_Cooling_Loop };
Operator: Monitor_Spent_Fuel_Pool;
Monitor_Spent_Fuel_Pool: [ Receive_Low_Water_Alert ]
[ Receive_Critically_Low_Water_Alarm ]
[ Receive_High_Temperature_Alarm ]
;
Ext_Cooling_Loop: Supply_Cold_Water
Remove_Warm_Water;
ROOT Heat_Exchanger: Remove_Decay_Heat;
ROOT Cooling_Loop: Pump_Pool_Water_into_Cooling_Loop
Deliver_Pool_Water_to_Heat_Exchanger
Return_Pool_Water_to_Cooling_Pool;
ROOT Spent_Fuel_Pool: Store_Spent_Fuel_Rods
{ Circulate_Water_for_Cooling,
Circulate_Water_for_Cleanup,
Monitor_Pool_Water
};
Circulate_Water_for_Cooling: Provide_Heated_Water_for_Cooling
Accept_Cooled_Pool_Water;
Circulate_Water_for_Cleanup: Provide_Radioactive_Water_for_Cleanup
Accept_Cleaned_Pool_Water;
Monitor_Pool_Water: ( Water_Level_Normal |
Water_Level_Low
Notify_Operator_Low_Water
Accept_Low_Volume_Makeup_Water
[ Water_Level_Critically_Low
Notify_Operator_Critically_Low_Water
Accept_High_Volume_Makeup_Water ] )
( Temperature_Normal |
Temperature_High
Notify_Operator_High_Temperature )
;
ROOT Purification_Subsystem: { Purification_Loop, Water_Make_Up_System };
Purification_Loop: Pump_Pool_Water_into_Purification_Subsystem
Filter_Pool_Water
Demineralize_Pool_Water
Return_Pool_Water;
Water_Make_Up_System: [ Add_Water ];
ROOT Emergency_Water_Tank: [ Add_Water ];
/*—————————————————————————————
Interactions
———————————————————————————————*/
COORDINATE $a: Store_Spent_Fuel_Rods FROM Spent_Fuel_Pool,
$b: Circulate_Water_for_Cooling FROM Spent_Fuel_Pool,
$c: Circulate_Water_for_Cleanup FROM Spent_Fuel_Pool,
$d: Monitor_Pool_Water FROM Spent_Fuel_Pool
DO ADD $a radioactive_particles $b;
ADD $a thermal_energy $b;
ADD $a radioactive_particles $c;
ADD $a thermal_energy $c;
ADD $a radioactive_particles $d;
ADD $a thermal_energy $d;
OD;
COORDINATE $a: Provide_Heated_Water_for_Cooling FROM Spent_Fuel_Pool,
$b: Pump_Pool_Water_into_Cooling_Loop FROM Cooling_Loop
DO ADD $a PRECEDES $b;
ADD $a hot_radioactive_pool_water $b;
OD;
COORDINATE $a: Deliver_Pool_Water_to_Heat_Exchanger FROM Cooling_Loop,
$b: Remove_Decay_Heat FROM Heat_Exchanger
DO ADD $a PRECEDES $b;
ADD $a hot_radioactive_pool_water $b;
OD;
COORDINATE $a: Supply_Cold_Water FROM External_Systems,
$b: Remove_Decay_Heat FROM Heat_Exchanger,
$c: Remove_Warm_Water FROM External_Systems
DO ADD $a PRECEDES $b;
ADD $b PRECEDES $c;
ADD $a cold_water $b;
ADD $b hot_water $c;
OD;
COORDINATE $a: Provide_Radioactive_Water_for_Cleanup FROM Spent_Fuel_Pool,
$b: Pump_Pool_Water_into_Purification_Subsystem FROM Purification_Subsystem
DO ADD $a PRECEDES $b;
ADD $a hot_radioactive_pool_water $b;
OD;
COORDINATE $a: Remove_Decay_Heat FROM Heat_Exchanger,
$b: Return_Pool_Water_to_Cooling_Pool FROM Cooling_Loop
DO ADD $a PRECEDES $b;
ADD $a cooled_radioactive_pool_water $b;
OD;
COORDINATE $a: Return_Pool_Water_to_Cooling_Pool FROM Cooling_Loop,
$b: Accept_Cooled_Pool_Water FROM Spent_Fuel_Pool
DO ADD $a PRECEDES $b;
ADD $a cooled_radioactive_pool_water $b;
OD;
COORDINATE $a: Return_Pool_Water FROM Purification_Subsystem,
$b: Accept_Cleaned_Pool_Water FROM Spent_Fuel_Pool
DO ADD $a PRECEDES $b;
ADD $a hot_cleaned_pool_water $b;
OD;
/* If Water Level Low */
COORDINATE $a: Water_Level_Low FROM Spent_Fuel_Pool,
$b: Add_Water FROM Purification_Subsystem
DO ADD $a PRECEDES $b;
ADD $a set_point_1_trigger $b;
OD;
COORDINATE $a: Notify_Operator_Low_Water FROM Spent_Fuel_Pool,
$b: Receive_Low_Water_Alert FROM External_Systems
DO ADD $a PRECEDES $b;
ADD $a set_point_1_alert $b;
OD;
COORDINATE $a: Water_Level_Critically_Low FROM Spent_Fuel_Pool,
$b: Add_Water FROM Emergency_Water_Tank
DO ADD $a PRECEDES $b;
ADD $a set_point_2_trigger $b;
OD;
COORDINATE $a: Notify_Operator_Critically_Low_Water FROM Spent_Fuel_Pool,
$b: Receive_Critically_Low_Water_Alarm FROM External_Systems
DO ADD $a PRECEDES $b;
ADD $a set_point_2_alarm $b;
OD;
COORDINATE $a: Add_Water FROM Purification_Subsystem,
$b: Accept_Low_Volume_Makeup_Water FROM Spent_Fuel_Pool
DO ADD $a PRECEDES $b;
ADD $a clean_cool_water $b;
OD;
COORDINATE $a: Add_Water FROM Emergency_Water_Tank,
$b: Accept_High_Volume_Makeup_Water FROM Spent_Fuel_Pool
DO ADD $a PRECEDES $b;
ADD $a clean_cool_water $b;
OD;
COORDINATE $a: Notify_Operator_High_Temperature FROM Spent_Fuel_Pool,
$b: Receive_High_Temperature_Alarm FROM External_Systems
DO ADD $a PRECEDES $b;
ADD $a high_temp_alarm $b;
OD;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment