This repository has been archived by the owner on Jan 17, 2018. It is now read-only.
forked from ontologyportal/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
emotion.kif
1990 lines (1705 loc) · 75 KB
/
emotion.kif
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;; Access to and use of these products is governed by the GNU General
;; Public License <http://www.gnu.org/copyleft>. By using
;; these products, you agree to be bound by the terms of the GPL.
;; Content in documentation may be taken from Wikipedia used and subject to
;; GNU Free Documentation License
;; Authors: Adam Pease (apease [at] articulatesoftware [dot] com)
;; We ask that people using or referencing this work cite our primary paper
;; and book:
;; Niles, I., and Pease, A. 2001. Towards a Standard Upper Ontology.
;; In Proceedings of the 2nd International Conference on Formal
;; Ontology in Information Systems (FOIS-2001), Chris Welty and Barry
;; Smith, eds, Ogunquit, Maine, October 17-19, 2001. See also
;; http://www.ontologyportal.org
;;
;; Pease, A., (2011). Ontology: A Practical Guide. Articulate Software Press,
;; Angwin, CA. ISBN 978-1-889455-10-5.
;; This ontology used the BFO Emotion Ontology as a starting point.
;; The comments below are credits for this source material.
;; The original ontology is under Creative Commons license
;; The Emotion Ontology is an ontology for affective phenomena such
;; as emotions and moods. It is being developed collaboratively
;; between the Swiss Centre of Affective Sciences and the University
;; at Buffalo. It builds on the Ontology of Mental Functioning (MFO)
;; and the Basic Formal Ontology (BFO). The latest version of the
;; ontology can always be found at
;; http://code.google.com/p/emotion-ontology/source/browse/#svn%2Ftrunk%2Fontology.
;; versionInfo "beta 2013-03-25"
;; dc-contributor "Barry Smith"
;; dc-contributor "Janna Hastings"
;; dc-contributor "Kevin Mulligan"
;; Sources for terms and synonyms / translations :
;; GRID project vocabulary resources (Cristina Soriano)
;; Sources for definitions: OCEAS => Oxford Companion to Emotion and the
;; Affective Sciences, ed. David Sander and Klaus Scherer, Oxford University Press, 2009.
;; MFOEM was been translated into SUO-KIF and lightly aligned with SUMO beginning on 4/7/2013
;; substantial expansion and reworking 6/2/2013
;; -------------- Basic concepts --------------
(subclass AppraisalProcess IntentionalPsychologicalProcess)
(documentation AppraisalProcess EnglishLanguage "An appraisal process is
a mental process that gives rise to an appraisal of one's own current
emotional state. It is the conscious
realization that one has unconsciously arrived at a particular mood.")
(termFormat EnglishLanguage AppraisalProcess "appraisal process")
(relatedInternalConcept Appraisal AppraisalProcess)
(=>
(and
(instance ?X AppraisalProcess)
(agent ?X ?A))
(exists (?APP)
(and
(instance ?APP Appraisal)
(knows ?A
(attribute ?A ?APP)))))
(termFormat EnglishLanguage SubjectiveEmotionalFeeling "subjective
emotional feeling")
(documentation SubjectiveEmotionalFeeling EnglishLanguage "Excluded the
following subjective feelings which appear on the GRID questionnaire
since they seem debatable to what extent they are really *feelings* and
to what extent they are actually *evaluations* or other things: -- felt
submissive/dominant -- felt powerless/powerful")
(subclass SubjectiveEmotionalFeeling EmotionalState)
(documentation SubjectiveEmotionalFeeling EnglishLanguage "The
subjective emotional feeling is an affective representation, that is, a
representation that the organism has about its own affect.")
(termFormat EnglishLanguage Appraisal "appraisal")
(subclass Appraisal StateOfMind)
(documentation Appraisal EnglishLanguage "An appraisal is a cognitive
representation which represents an evaluation of the relevance of some
triggering object or event to the organism.")
(termFormat EnglishLanguage EmotionalSpeakingBehavior "emotional
speaking behavior")
(subclass EmotionalSpeakingBehavior Speaking)
(subclass EmotionalSpeakingBehavior EmotionalBehavioralProcess)
(termFormat EnglishLanguage EmotionalVoiceUtterances "emotional voice
utterances")
(documentation EmotionalVoiceUtterances EnglishLanguage "The vocal
utterances associated with the characteristic sound of an emotion.
Obviously, any particular emotional instance may be associated with a
great variety of different types of voice utterances or no voice
utterances at all. However, "canonical" or characteristic
voice utterances can be associated with core emotions.")
(subclass EmotionalVoiceUtterances EmotionalSpeakingBehavior)
(=>
(instance ?EVU EmotionalVoiceUtterances)
(causes
(exists (?E)
(and
(instance ?E EmotionalState)
(attribute ?A ?E)))
(agent ?EVU ?A)))
(documentation EmotionalBehavioralProcess EnglishLanguage "An emotional
behavioral process is the behavior of the organism in response to the
appraisal, which includes the characteristic facial expressions for
particular emotion types.")
(documentation EmotionalBehavioralProcess EnglishLanguage "This branch
is still very much under construction and will be worked on in
collaboration with the Behavior Ontology (George Gkoutos).")
(termFormat EnglishLanguage EmotionalBehavioralProcess "emotional
behavioral process")
(subclass EmotionalBehavioralProcess PsychologicalProcess)
(=>
(and
(instance ?EBP EmotionalBehavioralProcess)
(agent ?EBP ?A))
(exists (?APP)
(and
(instance ?APP AppraisalProcess)
(agent ?APP ?A)
(causes ?APP ?EBP))))
(=>
(and
(instance ?EBP EmotionalBehavioralProcess)
(agent ?EBP ?A))
(exists (?APP)
(and
(instance ?FE FacialExpression)
(agent ?FE ?A)
(causes ?EBP ?FE))))
(instance emotionTendency BinaryRelation)
(domain emotionTendency 1 Agent)
(domain emotionTendency 2 EmotionalState)
(documentation emotionTendency EnglishLanguage "A tendency of an &%Agent
to exhibit a particular emotion. Someone with such a tendency is more likely to
exhibit an emotion, a priori, than someone without such tendency.")
(=>
(emotionTendency ?A ?ES)
(greaterThan
(ProbabilityFn
(attribute ?A ?ES))
(ProbabilityFn
(not
(attribute ?A ?ES)))))
(instance actionTendency BinaryRelation)
(domain actionTendency 1 EmotionalState)
(domainSubclass actionTendency 2 EmotionalBehavioralProcess)
(documentation actionTendency EnglishLanguage "A tendency of an emotion
to cause a particular type of action.")
(=>
(and
(holdsDuring ?T
(attribute ?A ?ES))
(actionTendency ?ES ?P))
(modalAttribute
(exists (?PI)
(and
(instance ?P ?PI)
(during ?PI ?T)
(experiencer ?PI ?A)))
Likely))
(actionTendency Surprise SurprisedFacialExpression)
(actionTendency Grief Weeping)
(actionTendency Happiness Laughing)
(actionTendency Happiness Smiling)
(actionTendency Unhappiness Frowning)
(actionTendency Surprise JawDropping)
(actionTendency Surprise OpeningEyesWidely)
(actionTendency Surprise RaisingEyebrows)
(actionTendency Disgust DisgustedFacialExpression)
(actionTendency Fear FearfulFacialExpression)
(actionTendency Happiness HappyFacialExpression)
(actionTendency Sadness SadFacialExpression)
(actionTendency Anger AngryFacialExpression)
(instance utterance TernaryRelation)
(documentation utterance EnglishLanguage "A prototypical linguistic
statement incorporating the concept in a phrase or sentence.")
(domain utterance 1 HumanLanguage)
(domain utterance 2 Entity)
(domain utterance 3 SymbolicString)
(instance pastTense TernaryRelation)
(documentation pastTense EnglishLanguage "The past tense form of a
concept when stated in the given language.")
(domain pastTense 1 HumanLanguage)
(domain pastTense 2 Entity)
(domain pastTense 3 SymbolicString)
;; -------------- Appraisal --------------
(termFormat EnglishLanguage AppraisalOfGoalImportance "appraisal of goal
importance")
(documentation AppraisalOfGoalImportance EnglishLanguage "Like
pleasantness, the GRID questionnaire distinguishes between evaluations
of goal importance/relevance for SELF and for an OTHER.")
(subclass AppraisalOfGoalImportance Appraisal)
(documentation AppraisalOfGoalImportance EnglishLanguage "An appraisal
that represents an evaluation of whether an event or object is important
to the person's goals or needs.")
(exhaustiveAttribute AppraisalOfGoalImportance
EvaluationAsImportantToGoals EvaluationAsNotImportantToGoals)
(instance EvaluationAsImportantToGoals AppraisalOfGoalImportance)
(utterance EnglishLanguage EvaluationAsImportantToGoals "this is
important for my goals")
(documentation EvaluationAsImportantToGoals EnglishLanguage "An
appraisal that represents an evaluation that the event or object is
important to the person's goals or needs.")
(termFormat EnglishLanguage EvaluationAsImportantToGoals "evaluation as
important to goals")
(documentation EvaluationAsNotImportantToGoals EnglishLanguage "An
appraisal that represents an evaluation that the event or object is not
important to the person's goals or needs.")
(instance EvaluationAsNotImportantToGoals AppraisalOfGoalImportance)
(termFormat EnglishLanguage EvaluationAsNotImportantToGoals "evaluation
as not important to goals")
(utterance EnglishLanguage EvaluationAsNotImportantToGoals "this is not
important for my goals")
(termFormat EnglishLanguage AppraisalOfPredictability "appraisal of
predictability")
(documentation AppraisalOfPredictability EnglishLanguage "An appraisal
that represents an evaluation of how predictable an event was.")
(subclass AppraisalOfPredictability Appraisal)
(exhaustiveAttribute AppraisalOfPredictability AppraisalAsPredictable
AppraisalAsNotPredictable)
(documentation AppraisalAsPredictable EnglishLanguage "An appraisal that
represents an evaluation that an event was easy to predict.")
(utterance EnglishLanguage AppraisalAsPredictable "this is predictable")
(instance AppraisalAsPredictable AppraisalOfPredictability)
(termFormat EnglishLanguage AppraisalAsPredictable "appraisal as
predictable")
(utterance EnglishLanguage AppraisalAsNotPredictable "this is not
predictable")
(documentation AppraisalAsNotPredictable EnglishLanguage "An appraisal
that represents an evaluation that an event was not easy to predict.")
(termFormat EnglishLanguage AppraisalAsNotPredictable "appraisal as not
predictable")
(instance AppraisalAsNotPredictable AppraisalOfPredictability)
(utterance EnglishLanguage AppraisalOfLoss "I have irrevocably lost
something important")
(documentation AppraisalOfLoss EnglishLanguage "An appraisal that
represents a belief that something or someone that is important to the
person has been lost to the person.")
(documentation AppraisalOfLoss EnglishLanguage "This appraisal category
stands alone: appraisal of loss is not a continuum like the others
(pleasant---unpleasant; expected---unexpected). Rather it is quite
discrete, loss or no loss, and is better defined by WHAT has been lost,
or at least, in which relation the thing that has been lost stands to
the person experiencing the emotion. Loss of a loved person, loss of the
expectation of achieving a hoped for life goal, and loss of a limb are
all kinds of loss. While it is tempting not to categorise this as an
appraisal at all, it should be noted that the loss does not actually
have to occur -- it only has to be believed, judged, or (in other words)
appraised to have occurred -- for the emotion to take place.")
(subclass AppraisalOfLoss Appraisal)
(termFormat EnglishLanguage AppraisalOfLoss "appraisal of loss")
(termFormat EnglishLanguage AppraisalOfAvoidabilityOfConsequences
"appraisal of avoidability of consequences")
(subclass AppraisalOfAvoidabilityOfConsequences Appraisal)
(documentation AppraisalOfAvoidabilityOfConsequences EnglishLanguage "An
appraisal which represents a judgement about how avoidable the expected
consequences of an event will be.")
(exhaustiveAttribute AppraisalOfAvoidabilityOfConsequences
AppraisalAsAvoidableConsequences AppraisalAsUnavoidableConsequences)
(utterance EnglishLanguage AppraisalAsAvoidableConsequences "there are
consequences but they are avoidable")
(instance AppraisalAsAvoidableConsequences
AppraisalOfAvoidabilityOfConsequences)
(documentation AppraisalAsAvoidableConsequences EnglishLanguage "An
appraisal that represents a judgement that the expected consequences of
an event are in principle avoidable or modfiable.")
(termFormat EnglishLanguage AppraisalAsAvoidableConsequences "appraisal
as avoidable consequences")
(termFormat EnglishLanguage AppraisalAsUnavoidableConsequences
"appraisal as unavoidable consequences")
(instance AppraisalAsUnavoidableConsequences
AppraisalOfAvoidabilityOfConsequences)
(utterance EnglishLanguage AppraisalAsUnavoidableConsequences "there are
consequences and they are unavoidable")
(documentation AppraisalAsUnavoidableConsequences EnglishLanguage "An
appraisal that represents a judgement that the expected consequences of
an event will be difficult to avoid or modify.")
(documentation AppraisalOfFamiliarity EnglishLanguage "An appraisal that
represents an evaluation of how familiar an object or event is.")
(termFormat EnglishLanguage AppraisalOfFamiliarity "appraisal of
familiarity")
(subclass AppraisalOfFamiliarity Appraisal)
(exhaustiveAttribute AppraisalOfFamiliarity AppraisalAsFamiliar
AppraisalAsNotFamiliar)
(documentation AppraisalAsFamiliar EnglishLanguage "An appraisal that
represents an evaluation that an object or event is familiar.")
(instance AppraisalAsFamiliar AppraisalOfFamiliarity)
(utterance EnglishLanguage AppraisalAsFamiliar "this is familiar")
(termFormat EnglishLanguage AppraisalAsFamiliar "appraisal as familiar")
(termFormat EnglishLanguage AppraisalAsNotFamiliar "appraisal as not
familiar")
(documentation AppraisalAsNotFamiliar EnglishLanguage "An appraisal that
represents an evaluation that an object or event is not familiar.")
(utterance EnglishLanguage AppraisalAsNotFamiliar "this is not familiar")
(instance AppraisalAsNotFamiliar AppraisalOfFamiliarity)
(documentation AppraisalOfJusticeOfTreatment EnglishLanguage "Appraisal
which represents an evaluation of whether the person was treated justly
or unjustly by another person.")
(termFormat EnglishLanguage AppraisalOfJusticeOfTreatment "appraisal of
justice of treatment")
(subclass AppraisalOfJusticeOfTreatment Appraisal)
(exhaustiveAttribute AppraisalOfJusticeOfTreatment
AppraisalAsUnjustTreatment AppraisalAsJustTreatment)
(termFormat EnglishLanguage AppraisalAsUnjustTreatment "appraisal as
unjust treatment")
(instance AppraisalAsUnjustTreatment AppraisalOfJusticeOfTreatment)
(documentation AppraisalAsUnjustTreatment EnglishLanguage "An appraisal
that represents an evaluation that the person was treated unjustly by
another person. (Injustice.)")
(utterance EnglishLanguage AppraisalAsUnjustTreatment "I am being
treated unjustly")
(=>
(attribute ?A AppraisalAsUnjustTreatment)
(exists (?P ?A2)
(and
(instance ?P Process)
(refers ?AJT ?P)
(agent ?P ?A2)
(not
(equal ?A ?A2))
(patient ?P ?A)
(not
(wants ?A ?P)))))
(subAttribute AppraisalAsJustTreatment AppraisalOfJusticeOfTreatment)
(utterance EnglishLanguage AppraisalAsJustTreatment "I am being treated
justly")
(termFormat EnglishLanguage AppraisalAsJustTreatment "appraisal as just
treatment")
(documentation AppraisalAsJustTreatment EnglishLanguage "An appraisal
which represents an evaluation that the person was treated justly by
another person.")
(=>
(and
(instance ?AJT AppraisalAsJustTreatment)
(agent ?AJT ?A))
(exists (?P ?A2)
(and
(instance ?P Process)
(refers ?AJT ?P)
(agent ?P ?A2)
(not
(equal ?A ?A2))
(patient ?P ?A)
(wants ?A ?P))))
(subAttribute AppraisalOfDesirabilityOfConsequences Appraisal)
(documentation AppraisalOfDesirabilityOfConsequences EnglishLanguage "An
appraisal that represents an evaluation of the desirability of the
expected consequences of an event.")
(documentation AppraisalOfDesirabilityOfConsequences EnglishLanguage
"Distinguished in GRID questionnaire between FOR SELF and FOR OTHER.")
(termFormat EnglishLanguage AppraisalOfDesirabilityOfConsequences
"appraisal of desirability of consequences")
(exhaustiveAttribute AppraisalOfDesirabilityOfConsequences
AppraisalAsDesirableConsequences AppraisalAsUndesirableConsequences)
(termFormat EnglishLanguage AppraisalAsDesirableConsequences "appraisal
as desirable consequences")
(documentation AppraisalAsDesirableConsequences EnglishLanguage "An
appraisal that represents an evaluation that the expected consequences
of an event are desirable.")
(utterance EnglishLanguage AppraisalAsDesirableConsequences "this has
desirable consequences")
(instance AppraisalAsDesirableConsequences
AppraisalOfDesirabilityOfConsequences)
(documentation AppraisalAsUndesirableConsequences EnglishLanguage "An
appraisal that represents an evaluation that the expected consequences
of an event are undesirable.")
(relatedInternalConcept EmotionalState AppraisalAsUndesirableConsequences)
(termFormat EnglishLanguage AppraisalAsUndesirableConsequences
"appraisal as undesirable consequences")
(utterance EnglishLanguage AppraisalAsUndesirableConsequences "this has
undesirable consequences")
(instance AppraisalAsUndesirableConsequences
AppraisalOfDesirabilityOfConsequences)
(documentation AppraisalOfUrgency EnglishLanguage "An appraisal that
represents an evaluation of the urgency of responding to an event.")
(subclass AppraisalOfUrgency Appraisal)
(termFormat EnglishLanguage AppraisalOfUrgency "appraisal of urgency of
response")
(exhaustiveAttribute AppraisalOfUrgency AppraisalAsNotUrgentResponse
AppraisalAsUrgentResponse)
(utterance EnglishLanguage AppraisalAsNotUrgentResponse "a response is
needed but not urgently")
(documentation AppraisalAsNotUrgentResponse EnglishLanguage "An
appraisal that represents an evaluation that an event does not require
an urgent response.")
(termFormat EnglishLanguage AppraisalAsNotUrgentResponse "appraisal as
not urgent response")
(instance AppraisalAsNotUrgentResponse AppraisalOfUrgency)
(subAttribute AppraisalAsUrgentResponse AppraisalOfUrgency)
(utterance EnglishLanguage AppraisalAsUrgentResponse "a response is
needed urgently")
(documentation AppraisalAsUrgentResponse EnglishLanguage "An appraisal
that represents an evaluation that an event requires an urgent
(immediate) response.")
(termFormat EnglishLanguage AppraisalAsUrgentResponse "appraisal as
urgent response")
(termFormat EnglishLanguage AppraisalOfCongruenceWithIdeals "appraisal
of congruence with ideals")
(documentation AppraisalOfCongruenceWithIdeals EnglishLanguage "Can also
be defined FOR SELF and FOR OTHER, where a special case of OTHER is
'society' (=> a judgement that an event violated laws or
socially accepted norms) May want to distinguish violation of
'standards' from that of 'ideals', 'norms'
and 'laws'. At the moment they are all lumped together.")
(documentation AppraisalOfCongruenceWithIdeals EnglishLanguage "An
appraisal which represents a judgement about whether an event is
consistent with the person's standards or ideals.")
(subclass AppraisalOfCongruenceWithIdeals Appraisal)
(exhaustiveAttribute AppraisalOfCongruenceWithIdeals
AppraisalAsCongruentWithIdeals AppraisalAsNotCongruentWithIdeals)
(instance AppraisalAsCongruentWithIdeals AppraisalOfCongruenceWithIdeals)
(utterance EnglishLanguage AppraisalAsCongruentWithIdeals "this is in
line with my ideals")
(documentation AppraisalAsCongruentWithIdeals EnglishLanguage "An
appraisal which represents a judgement that an event is consistent with
the person's standards or ideals.")
(termFormat EnglishLanguage AppraisalAsCongruentWithIdeals "appraisal as
congruent with ideals")
(instance AppraisalAsNotCongruentWithIdeals AppraisalOfCongruenceWithIdeals)
(termFormat EnglishLanguage AppraisalAsNotCongruentWithIdeals "appraisal
as not congruent with ideals")
(documentation AppraisalAsNotCongruentWithIdeals EnglishLanguage "An
appraisal that represents a judgement that an event is inconsistent with
a person's standards or ideals.")
(utterance EnglishLanguage AppraisalAsNotCongruentWithIdeals "this is
against my ideals")
(termFormat EnglishLanguage AppraisalOfPleasantness "appraisal of
pleasantness")
(documentation AppraisalOfPleasantness EnglishLanguage "GRID
questionnaire distinguishes between appraisal of pleasantness FOR SELF
and appraisal of pleasantness FOR SOME OTHER. So far we have defined
appraisal as evaluation of relevance FOR SELF, thus, we only include one
appraisal of pleasantness (for the time being), although we may expand
this later -- although I suspect that all or most of the appraisal types
would have to be so qualified.")
(documentation AppraisalOfPleasantness EnglishLanguage "An appraisal
that represents an evaluation of the pleasantness of an object or event.")
(subclass AppraisalOfPleasantness Appraisal)
(exhaustiveAttribute AppraisalOfPleasantness AppraisalAsPleasant
AppraisalAsUnpleasant)
(termFormat EnglishLanguage AppraisalAsPleasant "appraisal as pleasant")
(documentation AppraisalAsPleasant EnglishLanguage "An appraisal that
represents an evaluation that an object or event is pleasant.")
(instance AppraisalAsPleasant AppraisalOfPleasantness)
(utterance EnglishLanguage AppraisalAsPleasant "this is pleasant")
(utterance EnglishLanguage AppraisalAsUnpleasant "this is unpleasant")
(documentation AppraisalAsUnpleasant EnglishLanguage "An appraisal that
represents an evaluation that an object or event is unpleasant.")
(instance AppraisalAsUnpleasant AppraisalOfPleasantness)
(termFormat EnglishLanguage AppraisalAsUnpleasant "appraisal as unpleasant")
(documentation AppraisalAsBeingDisliked EnglishLanguage "Appraisal that
one is being disliked")
(instance AppraisalAsBeingDisliked Appraisal)
(termFormat EnglishLanguage AppraisalAsBeingDisliked "appraisal as being
disliked")
(termFormat EnglishLanguage AppraisalAsBeingLiked "appraisal as being
liked")
(documentation AppraisalAsBeingLiked EnglishLanguage "appraisal that one
is being liked")
(instance AppraisalAsBeingLiked Appraisal)
(contraryAttribute AppraisalAsBeingDisliked AppraisalAsBeingLiked)
(subclass AppraisalOfExpectedness Appraisal)
(termFormat EnglishLanguage AppraisalOfExpectedness "appraisal of
expectedness")
(documentation AppraisalOfExpectedness EnglishLanguage "An appraisal
that represents an evaluation of whether an event was expected to occur.")
(exhaustiveAttribute AppraisalOfExpectedness AppraisalAsExpected
AppraisalAsNotExpected)
(termFormat EnglishLanguage AppraisalAsExpected "appraisal as expected")
(utterance EnglishLanguage AppraisalAsExpected "this is expected")
(documentation AppraisalAsExpected EnglishLanguage "An appraisal that
represents an evaluation that an event was expected.")
(subclass AppraisalAsExpected AppraisalOfExpectedness)
(termFormat EnglishLanguage AppraisalAsNotExpected "appraisal as not
expected")
(documentation AppraisalAsNotExpected EnglishLanguage "An appraisal that
represents an evaluation that an event was not expected.")
(instance AppraisalAsNotExpected AppraisalOfExpectedness)
(utterance EnglishLanguage AppraisalAsNotExpected "this is not expected")
(subclass AppraisalOfDangerousness Appraisal)
(documentation AppraisalOfDangerousness EnglishLanguage "An appraisal
which represents an evaluation of the dangerousness of an object or
situation.")
(termFormat EnglishLanguage AppraisalOfDangerousness "appraisal of
dangerousness")
(exhaustiveAttribute AppraisalOfDangerousness AppraisalAsNotDangerous
AppraisalAsDangerous)
(documentation AppraisalAsNotDangerous EnglishLanguage "An appraisal
that represents an evaluation that an object or situation is not
dangerous to the person.")
(termFormat EnglishLanguage AppraisalAsNotDangerous "appraisal as not
dangerous")
(utterance EnglishLanguage AppraisalAsNotDangerous "this is not dangerous")
(instance AppraisalAsNotDangerous AppraisalOfDangerousness)
(termFormat EnglishLanguage AppraisalAsDangerous "appraisal as dangerous")
(utterance EnglishLanguage AppraisalAsDangerous "this is dangerous")
(documentation AppraisalAsDangerous EnglishLanguage "An appraisal that
represents an evaluation that an object or situation is dangerous to the
person.")
(instance AppraisalAsDangerous AppraisalOfDangerousness)
(documentation AppraisalOfSuddenness EnglishLanguage "An appraisal which
represents an evaluation of how suddenly an event occurred.")
(subclass AppraisalOfSuddenness Appraisal)
(termFormat EnglishLanguage AppraisalOfSuddenness "appraisal of suddenness")
(exhaustiveAttribute AppraisalOfSuddenness AppraisalAsSudden
AppraisalAsNotSudden)
(documentation AppraisalAsSudden EnglishLanguage "An appraisal that
represents an evaluation that an event occurred suddenly.")
(instance AppraisalAsSudden AppraisalOfSuddenness)
(utterance EnglishLanguage AppraisalAsSudden "this is sudden")
(termFormat EnglishLanguage AppraisalAsSudden "appraisal as sudden")
(documentation AppraisalAsNotSudden EnglishLanguage "An appraisal that
represents an evaluation that an event did not occur suddenly.")
(utterance EnglishLanguage AppraisalAsNotSudden "this is not sudden")
(instance AppraisalAsNotSudden AppraisalOfSuddenness)
(termFormat EnglishLanguage AppraisalAsNotSudden "appraisal as not sudden")
(subclass AppraisalOfCausalAgency Appraisal)
(documentation AppraisalOfCausalAgency EnglishLanguage "An appraisal
that represents an evaluation of who or what caused an event.")
(termFormat EnglishLanguage AppraisalOfCausalAgency "appraisal of causal
agency")
(exhaustiveAttribute AppraisalOfCausalAgency
AppraisalAsCausedSupernaturally AppraisalAsCausedBySelf
AppraisalAsCausedByChance AppraisalAsCausedByAnother)
(utterance EnglishLanguage AppraisalAsCausedByAnother "this is being
caused by someone else")
(instance AppraisalAsCausedByAnother AppraisalOfCausalAgency)
(documentation AppraisalAsCausedByAnother EnglishLanguage "An appraisal
that represents an evaluation that an event was caused by another person.")
(termFormat EnglishLanguage AppraisalAsCausedByAnother "appraisal as
caused by an other")
(utterance EnglishLanguage AppraisalAsCausedSupernaturally "this is
being caused supernaturally")
(documentation AppraisalAsCausedSupernaturally EnglishLanguage "An
appraisal that represents an evaluation that an event was caused by a
supernatural agent (God, the ancestors, ghosts...).")
(instance AppraisalAsCausedSupernaturally AppraisalOfCausalAgency)
(termFormat EnglishLanguage AppraisalAsCausedSupernaturally "appraisal
as caused supernaturally")
(utterance EnglishLanguage AppraisalAsCausedBySelf "this is being caused
by me")
(termFormat EnglishLanguage AppraisalAsCausedBySelf "appraisal as caused
by self")
(documentation AppraisalAsCausedBySelf EnglishLanguage "An appraisal
that represents an evaluation that an event was caused by the self.")
(instance AppraisalAsCausedBySelf AppraisalOfCausalAgency)
(utterance EnglishLanguage AppraisalAsCausedByChance "this is being
caused by chance")
(documentation AppraisalAsCausedByChance EnglishLanguage "An appraisal
that represents an evaluation that an event was caused by chance.")
(termFormat EnglishLanguage AppraisalAsCausedByChance "appraisal as
caused by chance")
(instance AppraisalAsCausedByChance AppraisalOfCausalAgency)
(documentation AppraisalOfSocialAttention EnglishLanguage "An appraisal
which represents a judgement about the direction and nature of the
social attention surrounding an event.")
(subclass AppraisalOfSocialAttention Appraisal)
(termFormat EnglishLanguage AppraisalOfSocialAttention "appraisal of
social attention")
(exhaustiveAttribute AppraisalOfSocialAttention
AppraisalAsBeingAtTheCentreOfAttention
AppraisalAsNotBeingAtTheCentreOfAttention)
(termFormat EnglishLanguage AppraisalAsBeingAtTheCentreOfAttention
"appraisal as being at the centre of attention")
(instance AppraisalAsBeingAtTheCentreOfAttention AppraisalOfSocialAttention)
(utterance EnglishLanguage AppraisalAsBeingAtTheCentreOfAttention "I am
at the centre of attention")
(documentation AppraisalAsBeingAtTheCentreOfAttention EnglishLanguage
"An appraisal which represents a judgement that the person is at the
centre of the surrounding social attention. (That is, that all other
nearby persons are paying attention to him/her.)")
(utterance EnglishLanguage AppraisalAsNotBeingAtTheCentreOfAttention "I
am not at the centre of attention")
(documentation AppraisalAsNotBeingAtTheCentreOfAttention EnglishLanguage
"An appraisal that represents a judgement that a person is not at the
centre of the surrounding social attention.")
(instance AppraisalAsNotBeingAtTheCentreOfAttention
AppraisalOfSocialAttention)
(termFormat EnglishLanguage AppraisalAsNotBeingAtTheCentreOfAttention
"appraisal as not being at the centre of attention")
(termFormat EnglishLanguage AppraisalOfCausalIntent "appraisal of causal
intent")
(documentation AppraisalOfCausalIntent EnglishLanguage "An appraisal
that represents an evaluation of the causal intent of the person who (is
evaluated to have) caused an event.")
(subclass AppraisalOfCausalIntent Appraisal)
(exhaustiveAttribute AppraisalOfCausalIntent AppraisalAsUnintended
AppraisalAsDeliberate)
(utterance EnglishLanguage AppraisalAsUnintended "this is not being
deliberately caused")
(instance AppraisalAsUnintended AppraisalOfCausalIntent)
(documentation AppraisalAsUnintended EnglishLanguage "An appraisal that
represents an evaluation that an event was caused unintentionally.")
(termFormat EnglishLanguage AppraisalAsUnintended "appraisal as unintended")
(termFormat EnglishLanguage AppraisalAsDeliberate "appraisal as deliberate")
(utterance EnglishLanguage AppraisalAsDeliberate "this is being
deliberately caused")
(documentation AppraisalAsDeliberate EnglishLanguage "An appraisal that
represents an evaluation that an event was deliberately (intentionally)
caused.")
(instance AppraisalAsDeliberate AppraisalOfCausalIntent)
;; -------------- Emotional States --------------
(documentation Panic EnglishLanguage "A severe episode of fear with
strong associated discomfort and thoughts of impending harm.")
(termFormat EnglishLanguage Panic "panic")
(subAttribute Panic Fear)
(utterance EnglishLanguage Panic "panicked")
(subAttribute Annoyance Anger)
(utterance EnglishLanguage Annoyance "annoyed")
(termFormat EnglishLanguage Annoyance "annoyance")
(termFormat GermanLanguage Jealousy "eifersucht")
(termFormat EnglishLanguage Jealousy "jealousy")
(documentation Jealousy EnglishLanguage "A negative emotion aroused when
a person feels threatened by a rival in his or her relationship with
another individual, in particular an intimate partner. Involves feelings
of threat, fear, suspicion, distrust, anxiety, anger, betrayal, and
rejection. [Source: OCEAS]")
(termFormat FrenchLanguage Jealousy "jalousie")
(instance Jealousy EmotionalState)
(utterance EnglishLanguage Jealousy "jealous")
(termFormat SpanishLanguage Jealousy "celos")
(pastTense EnglishLanguage Interest "interested")
(documentation Interest EnglishLanguage "Interest is a positive emotion
which motivates learning, exploration and curiosity. Feelings of
interest are associated with the novelty and complexity of stimuli.
[Source: OCEAS]")
(termFormat SpanishLanguage Interest "interés")
(termFormat FrenchLanguage Interest "intérêt")
(termFormat FrenchLanguage Interest "interesse")
(termFormat EnglishLanguage Interest "interest")
(instance Interest EmotionalState)
(instance Contempt EmotionalState)
(documentation Contempt EnglishLanguage "A negative emotion generally
elicited by the negative evaluation of others and their actions. Usually
elicited by violations of community codes. Closely related to anger and
disgust. [Source: OCEAS]")
(termFormat FrenchLanguage Contempt "mépris")
(termFormat SpanishLanguage Contempt "desprecio")
(termFormat EnglishLanguage Contempt "contempt")
(termFormat GermanLanguage Contempt "verachtung")
(utterance EnglishLanguage Contempt "contemptuous")
(relatedInternalConcept Anger Contempt)
(relatedInternalConcept Disgust Contempt)
(termFormat SpanishLanguage Love "amor")
(documentation Love EnglishLanguage "A strong emotion associated with
feelings of desire, warmth and intimacy for another person. [Source:
OCEAS]")
(termFormat GermanLanguage Love "liebe")
(termFormat EnglishLanguage Love "love")
(utterance EnglishLanguage Love "loving")
(termFormat FrenchLanguage Love "amour")
(instance Love EmotionalState)
(termFormat GermanLanguage Joy "freude")
(subAttribute Joy Happiness)
(termFormat SpanishLanguage Joy "gozo")
(termFormat EnglishLanguage Joy "joy")
(documentation Joy EnglishLanguage "A pleasant, positive emotion which
arises in safe and familiar circumstances, when people have made
progress towards important personal goals, especially when the progress
is better than expected. [Source: OCEAS]")
(utterance EnglishLanguage Joy "joyful")
(termFormat FrenchLanguage Joy "joie")
(termFormat EnglishLanguage Schadenfreude "schadenfreude")
(documentation Schadenfreude EnglishLanguage "A complex emotion that
consists of the experience of pleasure as caused by the misfortune of
others.")
(subAttribute Schadenfreude Pleasure)
(=>
(attribute ?A Schadenfreude)
(exists (?A2 ?P)
(and
(causesProposition ?P
(attribute ?A Schadenfreude))
(not
(equal ?A ?A2))
(not
(desires ?A2 ?P)))))
(instance Pleasure EmotionalState)
(termFormat EnglishLanguage Pleasure "pleasure")
(documentation Pleasure EnglishLanguage "A positively experienced
emotion which is sought out (approached) and is associated with
happiness, enjoyment, and satisfaction. [Source: OCEAS]")
(termFormat GermanLanguage Pleasure "vergnügen")
(termFormat FrenchLanguage Pleasure "plaisir")
(termFormat SpanishLanguage Pleasure "placer")
(utterance EnglishLanguage Pleasure "pleased")
(=>
(attribute ?A Pleasure)
(exists (?P)
(and
(causesProposition ?P
(attribute ?A Schadenfreude))
(desires ?A ?P))))
(utterance EnglishLanguage SensoryPleasure "sensory pleasure")
(termFormat EnglishLanguage SensoryPleasure "sensory pleasure")
(documentation SensoryPleasure EnglishLanguage "Pleasure in smell,
touch, sight, sound and taste. [Source: OCEAS]")
(subAttribute SensoryPleasure Pleasure)
(=>
(holdsDuring ?T
(attribute ?A SensoryPleasure))
(exists (?P)
(and
(instance ?P Perception)
(during ?T (WhenFn ?P))
(causesProposition
(experiencer ?P ?A)
(holdsDuring ?T
(attribute ?A SensoryPleasure))))))
(subAttribute MasteryPleasure Pleasure)
(documentation MasteryPleasure EnglishLanguage "Pleasure derived from
mastery, including the experience of flow. [Source: OCEAS]")
(termFormat EnglishLanguage MasteryPleasure "mastery pleasure")
(utterance EnglishLanguage MasteryPleasure "a feeling of mastery")
(termFormat FrenchLanguage Happiness "bonheur")
(termFormat EnglishLanguage Happiness "happiness")
(utterance EnglishLanguage Happiness "happy")
(termFormat GermanLanguage Happiness "glück")
(termFormat SpanishLanguage Happiness "felicidad")
(instance Happiness EmotionalState)
(documentation Happiness EnglishLanguage "A positive emotion which is
experienced in reaction to a positive experience or event. [Source: OCEAS]")
(utterance EnglishLanguage Shame "ashamed")
(termFormat SpanishLanguage Shame "vengüenza")
(termFormat EnglishLanguage Shame "shame")
(instance Shame EmotionalState)
(termFormat FrenchLanguage Shame "honte")
(termFormat GermanLanguage Shame "scham")
(utterance EnglishLanguage Disgust "disgusted")
(termFormat FrenchLanguage Disgust "dégoût")
(instance Disgust EmotionalState)
(termFormat SpanishLanguage Disgust "asco")
(termFormat EnglishLanguage Disgust "disgust")
(documentation Disgust EnglishLanguage "A negative emotion which guards
the body against dangerous foods and microbial infections. The basic
physiological disgust has also culturally evolved to incorporate moral
disgust which protects the self from nonphysical threats such as moral
violations. [Source: OCEAS]")
(termFormat GermanLanguage Disgust "ekel")
(subAttribute CoreDisgust Disgust)
(termFormat EnglishLanguage CoreDisgust "core disgust")
(documentation CoreDisgust EnglishLanguage "Disgust elicited by
"contaminated" food substances: rotten food, culturally
variable "bad" food, certain animals associated with rotten
food (maggots, rats), and every body product except tears. [Source: OCEAS]")
(documentation InterpersonalDisgust EnglishLanguage "Disgust elicited by
contact with others, especially contact with strangers or other
individuals or groups we are averse to. [Source: OCEAS]")
(subAttribute InterpersonalDisgust Disgust)
(termFormat EnglishLanguage InterpersonalDisgust "interpersonal disgust")
(=>
(holdsDuring ?T
(attribute ?A InterpersonalDisgust))
(exists (?P ?H)
(and
(instance ?P Perception)
(patient ?P ?H)
(instance ?H Human)
(during (WhenFn ?P) ?T))))
(=>
(holdsDuring ?T
(attribute ?A InterpersonalDisgust))
(causes
(exists (?P ?H)
(and
(instance ?P Perception)
(patient ?P ?H)
(experiencer ?P ?A)
(instance ?H Human)
(during (WhenFn ?P) ?T)))
(holdsDuring ?T
(attribute ?A InterpersonalDisgust))))
(termFormat EnglishLanguage AnimalNatureDisgust "animal-nature disgust")
(subAttribute AnimalNatureDisgust Disgust)
(documentation AnimalNatureDisgust EnglishLanguage "Disgust elicited by
poor hygeine, inappropriate sex, gore or violations of bodily
boundaries, and death or the odor of decay. [Source: OCEAS]")
(termFormat EnglishLanguage MoralDisgust "moral disgust")
(documentation MoralDisgust EnglishLanguage "Disgust elicited by some
kinds of especially egregious moral violations. [Source: OCEAS]")
(subAttribute MoralDisgust Disgust)
(utterance EnglishLanguage Contentment "contented")
(termFormat SpanishLanguage Contentment "satisfacción")
(termFormat GermanLanguage Contentment "zufriedenheit")
(termFormat FrenchLanguage Contentment "contentement")
(subAttribute Contentment Happiness)
(termFormat EnglishLanguage Contentment "contentment")
(documentation Contentment EnglishLanguage "A pleasant emotion, which
can be defined as a milder form of joy. Associated with physical
inactivity ('do nothing' action tendencies). [Source: OCEAS]")
(utterance EnglishLanguage Rage "enraged")
(subAttribute Rage Anger)
(termFormat EnglishLanguage Rage "rage")
(termFormat SpanishLanguage Surprise "sorpresa")
(termFormat EnglishLanguage Surprise "surprise")
(documentation Surprise EnglishLanguage "Surprise is a neutral emotion
caused by encountering unexpected events of all kinds. May be
experienced as negative if the surprising event is evaluated as
negative, or positive if the surprising event is evaluated as positive.
[Source: OCEAS]")
(termFormat GermanLanguage Surprise "Überraschung")
(instance Surprise EmotionalState)
(utterance EnglishLanguage Surprise "surprised")
(termFormat EnglishLanguage Expectant "anticipative")
(instance Expectant EmotionalState)
(termFormat EnglishLanguage Expectant "expectant")
(instance Concern EmotionalState)
(termFormat EnglishLanguage Concern "concern")
(utterance EnglishLanguage Concern "concerned")
(termFormat EnglishLanguage Irritation "irritation")
(utterance EnglishLanguage Irritation "irritated")
(termFormat FrenchLanguage Irritation "irritation")
(termFormat SpanishLanguage Irritation "irritación")
(termFormat GermanLanguage Irritation "Ärger")
(instance Irritation EmotionalState)
(documentation Irritation EnglishLanguage "An unpleasant emotion closely
related to anger but lower in intensity and without the moral dimension
of blame and seriousness that is implicated in anger. [Source: OCEAS]")
(termFormat GermanLanguage Despair "verzweiflung")
(termFormat SpanishLanguage Despair "desesperación")
(documentation Despair EnglishLanguage "A negative, high intensity
emotion characterised by loss of hope and loss of interest. Associated
with action tendencies of harm to self or others. [Source: OCEAS]")
(instance Despair EmotionalState)
(termFormat FrenchLanguage Despair "désespoir")
(utterance EnglishLanguage Despair "despairing")
(termFormat EnglishLanguage Despair "despair")
(termFormat EnglishLanguage Disappointment "disappointment")
(utterance EnglishLanguage Disappointment "disappointed")
(termFormat SpanishLanguage Disappointment "Déception")
(termFormat FrenchLanguage Disappointment "desilusión")
(termFormat GermanLanguage Disappointment "enttäuschung")
(instance Disappointment EmotionalState)
(documentation Disappointment EnglishLanguage "Disappointment is a
negative emotion which is triggered by the disconfirmation of the
prospect of a desirable event. [Source: OCEAS]")
(termFormat EnglishLanguage Pride "pride")
(termFormat FrenchLanguage Pride "fierté")
(termFormat GermanLanguage Pride "stolz")
(termFormat SpanishLanguage Pride "orgullo")
(utterance EnglishLanguage Pride "proud")
(instance Pride EmotionalState)
(documentation Pride EnglishLanguage "A positive emotion associated with
the appraisal of one's positive social worth, a signal that one is
likely to be socially accepted. [Source: OCEAS]")
(termFormat SpanishLanguage Anger "ira")
(documentation Anger EnglishLanguage "Anger is a negative emotion,
characterised by feelings of unpleasantness and high arousal, in the
form of antagonistic feelings and action tendencies. [Source: OCEAS]")
(termFormat GermanLanguage Anger "wut")
(instance Anger EmotionalState)
(utterance EnglishLanguage Anger "angry")
(termFormat EnglishLanguage Anger "anger")
(termFormat FrenchLanguage Anger "colère")
(termFormat EnglishLanguage Elation "elation")
(utterance EnglishLanguage Elation "elated")
(subAttribute Elation Happiness)
(termFormat EnglishLanguage Embarrassment "embarrassment")
(utterance EnglishLanguage Embarrassment "embarrassed")
(instance Embarrassment EmotionalState)
(subAttribute PassionateLove Love)
(utterance EnglishLanguage PassionateLove "passionately loving")
(termFormat EnglishLanguage PassionateLove "passionate love")
(documentation PassionateLove EnglishLanguage "A powerful longing for
union with the beloved, characterised by a confusion of feelings --
elation and pain, tenderness and sexuality, altruism and jealousy.")
(instance Grief EmotionalState)
(utterance EnglishLanguage Grief "grieving")
(termFormat EnglishLanguage Grief "grief")
(documentation Grief EnglishLanguage "Grief is an intense negative
emotion following a bereavement, i.e. the loss of a significant person
through that person's death. [Source: OCEAS]")
(instance InspirationEmotion EmotionalState)
(termFormat EnglishLanguage InspirationEmotion "inspiration (emotion)")
(utterance EnglishLanguage InspirationEmotion "inspired")
(instance Worry EmotionalState)