- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
after running a Fortran program, i got this output
'RADIATION NEW.exe' (Win32): Loaded 'C:\Users\Ojaytee\Documents\Visual Studio 2012\Projects\RADIATION NEW\RADIATION NEW\Debug\RADIATION NEW.exe'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imagehlp.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sspicli.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'. Symbols loaded.
'RADIATION NEW.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dbghelp.dll'. Symbols loaded.
RADIATION NEW.exe has triggered a breakpoint.
The program '[75508] RADIATION NEW.exe' has exited with code 29 (0x1d).
hw do i solve this
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
the program triggers a breakpoint at line:
1 READ (1,101,END=500) NW,NP,NR,BK
then it brings out the output i pasted above
pls, i need help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Was unit-1 opened explicitly (if so, please show the OPEN statement) or are you relying upon an implicit connection between the unit and a file? Does the file that is intended to be read exist? What does the file contain?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
mecej4, please, how do i create unit 1, i dont know how to create it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Can you post call stack of failed application?Regarding the exception the context is accessed with .ecxr debugger command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
There is almost certainly another window, probably behind the VS window, with the real error message, and it might give the file path too.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yes, there is, this is what the message in it
forrtl: severe (29): file not found, unit 1, file C:\Users\Ojaytee\documents\vis
ual studio 2012\Projects\RADIATION NEW\RADIATION NEW\fort.1
Image PC Routine Line Source
RADIATION NEW.exe 002F1B60 Unknown Unknown Unknown
RADIATION NEW.exe 0025A7B6 Unknown Unknown Unknown
RADIATION NEW.exe 00241ED2 Unknown Unknown Unknown
RADIATION NEW.exe 00241214 Unknown Unknown Unknown
RADIATION NEW.exe 00247418 Unknown Unknown Unknown
RADIATION NEW.exe 0023ADC1 _MAIN__ 443 RADIATION NEW.f90
RADIATION NEW.exe 002F3763 Unknown Unknown Unknown
RADIATION NEW.exe 002F375B Unknown Unknown Unknown
RADIATION NEW.exe 0029854C Unknown Unknown Unknown
RADIATION NEW.exe 0029869D Unknown Unknown Unknown
kernel32.dll 761133AA Unknown Unknown Unknown
ntdll.dll 77489EF2 Unknown Unknown Unknown
ntdll.dll 77489EC5 Unknown Unknown Unknown
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yes, there is, this is what the message in it
forrtl: severe (29): file not found, unit 1, file C:\Users\Ojaytee\documents\vis
ual studio 2012\Projects\RADIATION NEW\RADIATION NEW\fort.1
Image PC Routine Line Source
RADIATION NEW.exe 002F1B60 Unknown Unknown Unknown
RADIATION NEW.exe 0025A7B6 Unknown Unknown Unknown
RADIATION NEW.exe 00241ED2 Unknown Unknown Unknown
RADIATION NEW.exe 00241214 Unknown Unknown Unknown
RADIATION NEW.exe 00247418 Unknown Unknown Unknown
RADIATION NEW.exe 0023ADC1 _MAIN__ 443 RADIATION NEW.f90
RADIATION NEW.exe 002F3763 Unknown Unknown Unknown
RADIATION NEW.exe 002F375B Unknown Unknown Unknown
RADIATION NEW.exe 0029854C Unknown Unknown Unknown
RADIATION NEW.exe 0029869D Unknown Unknown Unknown
kernel32.dll 761133AA Unknown Unknown Unknown
ntdll.dll 77489EF2 Unknown Unknown Unknown
ntdll.dll 77489EC5 Unknown Unknown Unknown
and i dont know what it means?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I think that you need to read the I/O chapter of a Fortran text-book or the Intel Fortran manual.
You need to use the OPEN statement to associate unit-1 with the formatted file that you want your program to read.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The call stack into the system DLLs is not important here. This is a simple "file not found" error. It is very unlikely that a Fortran developer would need the debug symbols for Windows system DLLs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how can i get the intel Fortran manuaal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how can i get the intel Fortran manualThe manual is usually installed on your PC when you install the compiler. You can also find it onlinehttp://software.intel.com/sites/products/documentation/doclib/stdxe/2013/composerxe/compiler/fortran-win/index.htm .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks,
mecej4, i have created the unit 1;
this is the OPEN ststement that i used;
OPEN(UNIT=1,FILE="Text1.txt",STATUS='OLD')
abd this is what text1 contained;
NW=1
NP=25
NR=1
BK=6.283184
PX,PY,PZ
LL(1)=1
LR(1)=1
RAD(1)=0.00337
NL=1
LP=6
ZL=0.0 + j100.0
NF=1
FP=3
V=1.0 + j0.0
but the program keep saying;
forrtl: severe (64): input conversion error, unit 1, file C:\Users\Ojaytee\docum
ents\visual studio 2012\Projects\RADIATION NEW\RADIATION NEW\Text1.txt
Image PC Routine Line Source
RADIATION NEW.exe 01131C10 Unknown Unknown Unknown
RADIATION NEW.exe 0109F3E6 Unknown Unknown Unknown
RADIATION NEW.exe 01081FA2 Unknown Unknown Unknown
RADIATION NEW.exe 010812E4 Unknown Unknown Unknown
RADIATION NEW.exe 0108D7E1 Unknown Unknown Unknown
RADIATION NEW.exe 0108B0CB Unknown Unknown Unknown
RADIATION NEW.exe 0107AE29 _MAIN__ 445 RADIATION NEW.f90
RADIATION NEW.exe 01133813 Unknown Unknown Unknown
RADIATION NEW.exe 0113380B Unknown Unknown Unknown
RADIATION NEW.exe 010D862C Unknown Unknown Unknown
RADIATION NEW.exe 010D877D Unknown Unknown Unknown
kernel32.dll 761133AA Unknown Unknown Unknown
ntdll.dll 77489EF2 Unknown Unknown Unknown
ntdll.dll 77489EC5 Unknown Unknown Unknown
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Samuel,
You need to look at the documentation for the Radiation program so that you set up the input file in the correct format. The contents of the file, with variable names included are not consistent with the Read statement shown earlier for these variables.
According to the read statement, the first line of the input file should contain 4 values, something like
1 25 1 6.283184
If the format statement 101 specifies widths for the inputs, then the values will need to be spaced out accordingly.
You need to make similar changes for the other inputs in the file.
Regards,
David
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
i dont understand, nw the program is bringing this out
Fortran Pause - Enter command<CR> or <CR> to continue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
so somewhere in the program is a Pause statement (maybe at statement 500 since that is where the program routes on END=500). Also provide format statement 101 since that will demonstrate how the program reads unit 1. better yet provide Radiation New.f90 since that must have the open, input and pause staements.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
thank you. the program is running, but there is no output. it says
The program '[3300] Console2.exe' has exited with code 0 (0x0).
how can i see/view the output
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page