home *** CD-ROM | disk | FTP | other *** search
/ POWERdrive for you 1998 November / PFY_1198.ISO / share / texte / psypracs.txt < prev    next >
Text File  |  1998-09-20  |  11KB  |  307 lines

  1. Cognitive Psychology Practicals
  2. This program contains simualtions of several cognitive psychology 
  3. experiments. Use them as teaching tools or to replicate the experiments.
  4. All experiments contain instructions which can be customized to suit 
  5. your needs (just modify text files). Also they come with references for
  6. further reading and details of a design (also in text files).
  7. When you run the experiment program creates results files which
  8. can be viewed from a program and analyized using SPSS for example.
  9.  
  10. I made the program couple a years ago in Borland C++ for Department of
  11. Psychology at University of Zimbabwe. I found them recently and
  12. thought why not email it to everyone, maybe someone finds them usefull.
  13. So, this is a freeware, I'd appreciate if you send me an email 
  14. (dejann@usa.net) if you are using the software. 
  15. I'm enclosing CPP source code files (project file is missing). 
  16. If you know how to code in C you can use them to modify the program.
  17.  
  18. After you unzip all files to a folder type PRACS at the DOS prompt 
  19. or double click PRACS.EXE file in windows (press ALT + ENTER to switch
  20. to full screen).
  21.  
  22. System requirements:
  23.  Almost any IBM compatible computer with just 150 KB free hard disk space
  24.  Colour monitor for Stroop effect only
  25.  
  26. TEXT FILES:
  27. =====
  28.  
  29. ???INS.TXT files are instructions
  30.  
  31. ???INS2.TXT files are instructions presented after practice trials
  32.  
  33. ???DETS.TXT files are details of the design
  34.  
  35. ???REFS.TXT files are references for further reading
  36.  
  37.  
  38. SPERLING EXPERIMENT
  39. ========================================================================
  40.  
  41. In the SPERLING experiment all stimuli are created by the computer.
  42.  
  43.  
  44. STERNBERG EXPERIMENT
  45. ========================================================================
  46.  
  47. In the STERNBERG experiment all stimuli are created by the computer.
  48.  
  49.  
  50. REICHER EXPERIMENT
  51. =========================================================================
  52.  
  53. REIWORD.TXT file contains words used in the Reicher experiment. Format:
  54.     [word][alternative letter][serial position of the target letter 1-4]
  55.     [target-mask delay condition 1-4]
  56.     E.g. workd41 means that word 'work' will be presented followed by
  57.     choice letters 'd' and 'k' in the fourth position and with the 
  58.     target-mask interval of 20 ms.
  59.     NOTE: You only need to store words in this file. Letter trials are
  60.     made by the computer on the basis of words.
  61.  
  62. REISYS.TXT file is a file required for Reicher experiment. It contains
  63.     two integers. Integer in the first row is the number of words in 
  64.     practice trials and integer in the second row is the number of 
  65.     words in experimental trials. Note that the actual number of trials
  66.     is double the numeber of words because of letter conditions.
  67.  
  68.  
  69. STROOP EFFECT
  70. ========================================================================
  71.  
  72. This experiment requires a colour monitor.
  73.  
  74. Also it requires an experimenter. It cannot be performed by the
  75. subject alone like the other experiments in this package.
  76.  
  77. STRWORD.TXT file contains stimuli used in the stroop effect experiment.
  78.         FORMAT: [colour 0-5][condition 0-1] E.g.  01
  79.                                                   15
  80.                                                   02
  81.                                                   etc.
  82.  
  83.         COLOUR CODES:   white -0
  84.             blue  -1
  85.             green -2
  86.             yellow-3
  87.             red   -4
  88.             purple-5
  89.                         
  90.  
  91.         CONDITION CODES: 0=colour patch condition
  92.                          1=colour name condition
  93.  
  94.  
  95. STRSYS.TXT file contains 2 integers. First integer represents a number of
  96.     practice trials and the second one represents a number of
  97.     experimenal trials. Maximum number of trials is 300.
  98.  
  99.  
  100. MEMORY EXPERIMENT
  101. ==========================================================================
  102.  
  103. MEMWORD.TXT file contains words and conditions. First N words (where N is
  104.     the first number recorded in MEMSYS.TXT file) are target words.
  105.     Target words will be presented in the first part of the experiments.
  106.     All words are randomly presented in the second part of the
  107.     experiment when subjects' response is recorded.
  108.     Each word must be immediately followed by the number (1-9)
  109.     representing a condition. The number of conditions to be used
  110.     in the experiments can vary from 2-9 as will be described in the
  111.     MEMSYS.TXT section
  112.  
  113. MEMSYS.TXT file contains 2 integers. First integer represents the number of
  114.     words to be presented in the first part of the experiments. If you
  115.     type 10 first 10 words from MEMWORD.TXT will be presented as 'to
  116.         be remembered' words. It is recommended that the number of target
  117.         words be 1/2 of the total number of words. However, program will take
  118.         any variation as long as total number of words does not exceed 300.
  119.     Second number represents the number of conditions.Valid values are
  120.     2 to 9. If you change this value make sure you also changed
  121.     MEMWORD.TXT file. Ideally this file should have equal number of
  122.     words in each condition.
  123.  
  124.  
  125. SEMANTIC PRIMING EXPERIMENT
  126. ============================================================================
  127.  
  128.         Prime is presented for 200ms.
  129.         Target is presented after a 200 ms. delay
  130.  
  131.  
  132.  
  133. SEMWORD.TXT file contains words and conditions in the following format:
  134.     WORD1:WORD2:CONDITION (e.g. apple:tree:2)
  135.     Word1 is presented first (a prime) and word2 follows it immediately.
  136.     Subjects are tested on whether the word2 is a word or a nonword. 
  137.     Condition can have a value 1-3. Condition 1 stands for related
  138.     words, condition 2 for unrelated words and condition 3 for non-words.
  139.     Note that conditions 1 and 2 are positive trials and that the program
  140.     reports only hits and misses. Condition 3 represents negative trials
  141.     and correct rejections and false positives are reported. Ideally 
  142.         combined number of condition 1 and 2 stimuli should be equal to
  143.     the number of condition 3 stimuli.
  144.     This file contains stimuli for both practice and experimental trials.
  145.  
  146. SEMSYS.TXT file contains two integers. First number shows the number of 
  147.     practice trials and the second one represents the number of 
  148.     experimental trials. Make sure that those two numbers correspond to
  149.     the actual number of stimuli in the semword.txt file. Also, numbers
  150.     must appear one over the other in adjacent lines. Combined value 
  151.     must be less than 300.
  152.  
  153.  
  154. RESULT FILES
  155. ===========================================================================
  156.  
  157. *.REI, *.STE, *.SPE, *.STR, *.MEM, and *.SEM files contain individual results for
  158.     Reicher, Sternberg, Sperling, Stroop effect, Memory experiment, and 
  159.     Semantic priming, respectively. 
  160.  
  161. *.CAT files contain master catalog which is an SPSS ready file. Format of
  162.     this file for each experiment is explained further down.
  163.  
  164. Sternber.cat format:
  165. ===================
  166.  
  167. 1. INITIALS
  168. 2. SEX [1-male;2-female]
  169. 3. TOTAL PERCENTAGE CORRECT
  170. 4.- 9. MEAN REACTION TIME FOR CORRECT ANSWERS FOR POSITIVE TRIALS
  171.     (condition* 1-6)
  172. 10.-15. MEAN REACTION TIME FOR CORRECT ANSWERS FOR NEGATIVE TRIALS
  173.     (condition* 1-6)
  174.  
  175. * conditions 1-6 represent different size of the positive set where condition
  176.     1 represents size of the positive set of 1, condition 2 size of the
  177.     positive set of 2, etc.
  178.  
  179.  
  180. Reicher.cat format:
  181. ==================
  182.  
  183. 1. INITIALS
  184. 2. SEX [1-MALE; 2-FEMALE]
  185.   ** LETTER CONDITIONS **
  186. 3. PERCENTAGE CORRECT FOR CONDITION 1*
  187. 4. MEAN REACTION TIME FOR CONDITION 1
  188. 5. PERCENTAGE CORRECT FOR CONDITION 2
  189. 6. MEAN REACTION TIME FOR CONDITION 2
  190. 7. PERCENTAGE CORRECT FOR CONDITION 3
  191. 8. MEAN REACTION TIME FOR CONDITION 3
  192. 9. PERCENTAGE CORRECT FOR CONDITION 4                            
  193. 10. MEAN REACTION TIME FOR CONDITION 4                            
  194.   ** WORD CONDITIONS [SECOND ROW]**
  195. 11. PERCENTAGE CORRECT FOR CONDITION 1
  196. 12. MEAN REACTION TIME FOR CONDITION 1
  197. 13. PERCENTAGE CORRECT FOR CONDITION 2
  198. 14. MEAN REACTION TIME FOR CONDITION 2
  199. 15. PERCENTAGE CORRECT FOR CONDITION 3
  200. 16. MEAN REACTION TIME FOR CONDITION 3
  201. 17. PERCENTAGE CORRECT FOR CONDITION 4                            
  202. 18. MEAN REACTION TIME FOR CONDITION 4                            
  203.  
  204.   
  205.  
  206.   
  207.   * CONDITIONS 1-4 represent different target-mask intervals where
  208.     condition 1= 20 ms.
  209.     condition 2= 40 ms.
  210.     condition 3= 60 ms.
  211.     condition 4= 80 ms.
  212.  
  213.  
  214.  
  215.  Sperling.cat format:
  216.  ===================
  217.  
  218. 1. INITIALS 
  219. 2. SEX [1-MALE;2-FEMALE]
  220. 3.-8. PERCENTAGE CORRECT CONDITION 1- CONDITION 5*
  221.  
  222. * CONDITION 1-5 represent stimulus-recall signal delay where:
  223.  
  224.     Condition 1=   0 ms. delay
  225.     Condition 2= 100 ms. delay
  226.     Condition 3= 250 ms. delay
  227.     Condition 4= 500 ms. delay
  228.     Condition 5= 750 ms. delay                     
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  Stroop.cat format:
  235.  =================
  236.  
  237.  1. INITIALS
  238.  2. SEX (1-MALE;2-FEMALE)
  239.  3. NO. OF HITS FOR COLOUR NAME CONDITION
  240.  4. MEAN RT FOR HITS FOR COLOUR NAME CONDITION (in milliseconds)
  241.  5. NO. OF MISSES FOR COLOUR NAME CONDITION
  242.  6. MEAN RT FOR HITS FOR COLOUR NAME CONDITION
  243.  7. NO. OF HITS FOR COLOUR PATCH CONDITION
  244.  8. MEAN RT FOR HITS FOR COLOUR PATCH CONDITION
  245.  9. NO. OF MISSES FOR COLOUR PATCH CONDITION
  246. 10. MEAN RT FOR MISSES FOR COLOUR PATCH CONDITION 
  247.  
  248. MEMORY.CAT
  249. ==========
  250.  
  251. 1. INITIALS
  252. 2. SEX
  253. CONDITION 1:
  254. 3. NUMBER OF HITS
  255. 4. MEAN RT FOR HITS
  256. 5. NUMBER OF MISSES
  257. 6. MEAN RT FOR MISSES
  258. 7. NUMBER OF CORRECT REJECTIONS
  259. 8. MEAN RT FOR CORRECT REJECTIONS
  260. 9. NUMBER OF FALSE POSITIVES
  261. 10. MEAN RT FOR FALSE POSITIVES
  262. CONDITION 2:
  263. 11. NUMBER OF HITS
  264. 12. MEAN RT FOR HITS
  265. 13. NUMBER OF MISSES
  266. 14. MEAN RT FOR MISSES
  267. 15. NUMBER OF CORRECT REJECTIONS
  268. 16. MEAN RT FOR CORRECT REJECTIONS
  269. 17. NUMBER OF FALSE POSITIVES
  270. 18. MEAN RT FOR FALSE POSITIVES
  271.  
  272. Numbers 11-18 are repeated for conditions 3, 4, 5, 6, 7, 8, and 9 if
  273. those conditions are included in the experiment
  274.  
  275. SEMANTIC.CAT
  276. ============
  277.  
  278. 1. INITIALS
  279. 2. SEX (1-MALE, 2-FEMALE)
  280. 3. NO. OF HITS FOR CONDITION 1 (RELATED WORDS)
  281. 4. MEAN REACTION TIME (IN MILLISECONDS)
  282. 5. NO. OF MISSES FOR CONDITION 1 
  283. 6. MEAN REACTION TIME
  284. 7. NO. OF HITS FOR CONDITION 2 (UNRELATED WORDS)
  285. 8. MEAN REACTION TIME
  286. 9. NO. OF MISSES FOR CONDITION 2
  287. 10. MEAN REACTION TIME
  288. 11. NO. OF CORRECT REJECTIONS FOR CONDITION 3 (NON-WORDS)
  289. 12. MEAN RT
  290. 13. NO. OF FALSE POSITIVES FOR CONDITION 3
  291. 14. MEAN RT
  292.  
  293.  TROUBLESHOOTING:
  294. ========================================================================
  295.  
  296.  If there are problems after changing the ???word.txt file (e.g. strange
  297.  words not present in the file appear in the experiment) make sure that
  298.  all characters are deleted after the last word. Do that by placing the
  299.  cursor in MS-DOS editor after the last character of the last stimulus and
  300.  press and hold delete. In this way you will delete all the characters,
  301.  including the invisible ones such as spaces and carriage returns.
  302.  
  303.  Also make sure that the numbers in ???sys.txt file (if one exists for
  304.  a given experiment) correspond to the actual number of stimuli in
  305.  the ???word.txt file.
  306.  
  307.